aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-01-09 11:35:38 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-01-09 11:35:38 +0100
commiteaafa23cbd83b7bda4b28779138c62446bbdea2a (patch)
tree1c8280b90894814d742ca8431c17b20d408cc459 /src/test
parent13e99e463d4aa0bd2b2892010ca8c7007c40c242 (diff)
downloadbitcoin-eaafa23cbd83b7bda4b28779138c62446bbdea2a.tar.xz
Add test for GetTime()
Test for mingw/wine issue #3494, where the upper word of time(NULL) return value gets clobbered.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/util_tests.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/util_tests.cpp b/src/test/util_tests.cpp
index b57945d061..691f02a9d7 100644
--- a/src/test/util_tests.cpp
+++ b/src/test/util_tests.cpp
@@ -330,4 +330,12 @@ BOOST_AUTO_TEST_CASE(strprintf_numbers)
#undef B
#undef E
+/* Check for mingw/wine issue #3494
+ * Remove this test before time.ctime(0xffffffff) == 'Sun Feb 7 07:28:15 2106'
+ */
+BOOST_AUTO_TEST_CASE(gettime)
+{
+ BOOST_CHECK((GetTime() & ~0xFFFFFFFFLL) == 0);
+}
+
BOOST_AUTO_TEST_SUITE_END()