summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-03-28 08:57:29 -0400
committerNick Mathewson <nickm@torproject.org>2016-03-28 08:57:29 -0400
commit32e888631447c609d4903ffb8a302f8194590fc3 (patch)
treea688dab60bf3777153a24d23d3b0e9e515159dce
parent9604a5ba91c5afb082b30cc542341959da100cbe (diff)
downloadtor-32e888631447c609d4903ffb8a302f8194590fc3.tar.gz
tor-32e888631447c609d4903ffb8a302f8194590fc3.zip
One more test that didnt pass on windows. See #18665.
-rw-r--r--src/test/test_util.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c
index 8e5c9bf80a..7d43b8156b 100644
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -726,8 +726,11 @@ test_util_time(void *arg)
tt_str_op("2038-02-17 06:13:20",OP_EQ, timestr);
*/
#elif SIZEOF_TIME_T == 8
+#ifndef _WIN32
+ /* This SHOULD work on windows too; see bug #18665 */
tt_str_op("2038-02-17 06:13:20",OP_EQ, timestr);
#endif
+#endif
done:
;