aboutsummaryrefslogtreecommitdiff
path: root/tests/framework/instruments/WallClockTimer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/framework/instruments/WallClockTimer.h')
-rw-r--r--tests/framework/instruments/WallClockTimer.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/framework/instruments/WallClockTimer.h b/tests/framework/instruments/WallClockTimer.h
index 1ca4fe2c36..b1d7531f4e 100644
--- a/tests/framework/instruments/WallClockTimer.h
+++ b/tests/framework/instruments/WallClockTimer.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019 Arm Limited.
+ * Copyright (c) 2017-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -70,9 +70,14 @@ public:
MeasurementsMap measurements() const override;
private:
- std::chrono::system_clock::time_point _start{};
+#if defined(BARE_METAL)
+ uint64_t _start {};
+ uint64_t _stop{};
+#else // !defined(BARE_METAL)
+ std::chrono::system_clock::time_point _start {};
std::chrono::system_clock::time_point _stop{};
- float _scale_factor{};
+#endif // defined(BARE_METAL)
+ float _scale_factor {};
};
using WallClockTimer = WallClock<false>;