From 32e888631447c609d4903ffb8a302f8194590fc3 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 28 Mar 2016 08:57:29 -0400 Subject: [PATCH] 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 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: ; -- 2.11.4.GIT