[tor-commits] [tor/master] One more test that didnt pass on windows. See #18665.

nickm at torproject.org nickm at torproject.org
Mon Mar 28 12:57:33 UTC 2016


commit 32e888631447c609d4903ffb8a302f8194590fc3
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Mar 28 08:57:29 2016 -0400

    One more test that didnt pass on windows. See #18665.
---
 src/test/test_util.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/test/test_util.c b/src/test/test_util.c
index 8e5c9bf..7d43b81 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:
   ;



More information about the tor-commits mailing list