summaryrefslogtreecommitdiff
path: root/source/test/unittests/foo.bench.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/test/unittests/foo.bench.c')
-rw-r--r--source/test/unittests/foo.bench.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/test/unittests/foo.bench.c b/source/test/unittests/foo.bench.c
new file mode 100644
index 0000000..531f1d8
--- /dev/null
+++ b/source/test/unittests/foo.bench.c
@@ -0,0 +1,13 @@
+#define KIT_BENCH_FILE foo
+#include "../../kit_test/bench.h"
+
+BENCHMARK("foo") {
+ BENCHMARK_BEGIN;
+ {
+ volatile int x = 0;
+ for (int i = 0; i < 200000; i++) x++;
+ }
+ BENCHMARK_END;
+}
+
+BENCHMARK("bar") { }