summaryrefslogtreecommitdiff
path: root/tests/stubs
diff options
context:
space:
mode:
authorJakub Czapiga <jacz@semihalf.com>2020-10-09 10:07:47 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-11-09 07:34:07 +0000
commite0c60f3d39182a1105aa9e39683abdbc2e600162 (patch)
treeaa79243e671ed620c9daf89707579acbeb4b063f /tests/stubs
parent5742357e4d9f9acd2b13d6db32bf22bb58545c17 (diff)
downloadcoreboot-e0c60f3d39182a1105aa9e39683abdbc2e600162.tar.xz
tests: Add lib/timestamp-test test case
Signed-off-by: Jakub Czapiga <jacz@semihalf.com> Change-Id: I39abfc644fef085cef2175086a0e45a040b244de Reviewed-on: https://review.coreboot.org/c/coreboot/+/46968 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Diffstat (limited to 'tests/stubs')
-rw-r--r--tests/stubs/timestamp.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/stubs/timestamp.c b/tests/stubs/timestamp.c
new file mode 100644
index 0000000000..3fd739f6f5
--- /dev/null
+++ b/tests/stubs/timestamp.c
@@ -0,0 +1,29 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include "stubs/timestamp.h"
+
+static uint64_t timestamp_value = 0;
+static int timestamp_tick_freq_mhz_value = 1;
+
+/* Provides way to control timestamp value */
+void dummy_timestamp_set(uint64_t v)
+{
+ timestamp_value = v;
+}
+
+/* Provides way to control timestamp tick frequency MHz value */
+void dummy_timestamp_tick_freq_mhz_set(int v)
+{
+ timestamp_tick_freq_mhz_value = v;
+}
+
+/* Reimplementation of timestamp getter to control behaviour */
+uint64_t timestamp_get(void)
+{
+ return timestamp_value;
+}
+
+int timestamp_tick_freq_mhz(void)
+{
+ return timestamp_tick_freq_mhz_value;
+}