summaryrefslogtreecommitdiffstats
path: root/tests/monotonic-realticks.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2010-03-06 13:22:59 -0500
committerTavian Barnes <tavianator@gmail.com>2010-03-06 13:22:59 -0500
commitb31647ec5bc1979a0accfd8e89936d0d943734f1 (patch)
treef41905a5b3079764e23fd1d8a5203bdc148eb024 /tests/monotonic-realticks.c
parent6952438ad1ef40132f8c00aa850fa558fe2202c1 (diff)
downloadlibsandglass-b31647ec5bc1979a0accfd8e89936d0d943734f1.tar.xz
Make build work on non-x86/x86_64 platforms.
Diffstat (limited to 'tests/monotonic-realticks.c')
-rw-r--r--tests/monotonic-realticks.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/monotonic-realticks.c b/tests/monotonic-realticks.c
index e3e973a..1e48ca5 100644
--- a/tests/monotonic-realticks.c
+++ b/tests/monotonic-realticks.c
@@ -36,9 +36,11 @@ main()
return EXIT_FAILURE;
}
+#if SANDGLASS_TSC
sandglass_bench_fine(&sandglass, sandglass_get_tsc());
-
printf("%ld\n", sandglass.grains);
-
return EXIT_SUCCESS;
+#else
+ return EXIT_FAILURE;
+#endif
}