aboutsummaryrefslogtreecommitdiff
path: root/tests/framework/Framework.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/framework/Framework.cpp')
-rw-r--r--tests/framework/Framework.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/framework/Framework.cpp b/tests/framework/Framework.cpp
index 31e524338b..853ea251c3 100644
--- a/tests/framework/Framework.cpp
+++ b/tests/framework/Framework.cpp
@@ -47,6 +47,9 @@ Framework::Framework()
#ifdef PMU_ENABLED
_available_instruments.emplace(InstrumentType::PMU, Instrument::make_instrument<PMUCounter>);
#endif /* PMU_ENABLED */
+#ifdef MALI_ENABLED
+ _available_instruments.emplace(InstrumentType::MALI, Instrument::make_instrument<MaliCounter>);
+#endif /* MALI_ENABLED */
}
std::set<InstrumentType> Framework::available_instruments() const