aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_util.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-07-26 11:07:53 -0400
committerNick Mathewson <nickm@torproject.org>2016-07-26 11:07:53 -0400
commit90ca4460489bbc92a8de8f32b8aa4bb82416dcbb (patch)
tree70b8587156f1e8b889ddac9523630e0b7499dad5 /src/test/test_util.c
parent019b7ddb9f9599f7040b1477b47956626c88bb45 (diff)
downloadtor-90ca4460489bbc92a8de8f32b8aa4bb82416dcbb.tar.gz
tor-90ca4460489bbc92a8de8f32b8aa4bb82416dcbb.zip
Remove windows debugging prints: it was an integer overflow hitting ftrapv
Diffstat (limited to 'src/test/test_util.c')
-rw-r--r--src/test/test_util.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 2dfa10998b..38df7bb445 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -5296,31 +5296,12 @@ test_util_monotonic_time(void *arg)
uint64_t nsec1, nsec2, usec1, msec1;
uint64_t nsecc1, nsecc2, usecc1, msecc1;
-#ifdef _WIN32
- puts("Test-1");
-#endif
-
monotime_get(&mt1);
-#ifdef _WIN32
- puts("Test-2");
-#endif
monotime_coarse_get(&mtc1);
-#ifdef _WIN32
- puts("Test-3");
-#endif
nsec1 = monotime_absolute_nsec();
-#ifdef _WIN32
- puts("Test-4");
-#endif
usec1 = monotime_absolute_usec();
msec1 = monotime_absolute_msec();
-#ifdef _WIN32
- puts("Test-5");
-#endif
nsecc1 = monotime_coarse_absolute_nsec();
-#ifdef _WIN32
- puts("Test-6");
-#endif
usecc1 = monotime_coarse_absolute_usec();
msecc1 = monotime_coarse_absolute_msec();