summaryrefslogtreecommitdiff
path: root/src/tests/profiler_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/profiler_unittest.cc')
-rw-r--r--src/tests/profiler_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/profiler_unittest.cc b/src/tests/profiler_unittest.cc
index 19371b7..fafc76f 100644
--- a/src/tests/profiler_unittest.cc
+++ b/src/tests/profiler_unittest.cc
@@ -61,7 +61,7 @@ static void test_other_thread() {
for (i = 0; i < g_iters; ++i ) {
result ^= i;
}
- snprintf(b, sizeof(b), "%d", result); // get some libc action
+ snprintf(b, sizeof(b), "other: %d", result); // get some libc action
}
#endif
}
@@ -74,7 +74,7 @@ static void test_main_thread() {
for (i = 0; i < g_iters; ++i ) {
result ^= i;
}
- snprintf(b, sizeof(b), "%d", result); // get some libc action
+ snprintf(b, sizeof(b), "same: %d", result); // get some libc action
}
}