gnu: Add Combinatorial BLAS.
[jackhill/guix/guix.git] / gnu / packages / patches / libevent-2.1-skip-failing-test.patch
CommitLineData
fd05d7ec
MB
1These fail on 32-bit due to an overflow bug in the test program.
2
3See test/regress_util.c:1448.
4
5Upstream bug URL:
6
7https://github.com/libevent/libevent/issues/452
8
9diff --git a/test/regress_util.c b/test/regress_util.c
10index ef6a1487..4de501fc 100644
11--- a/test/regress_util.c
12+++ b/test/regress_util.c
13@@ -1413,9 +1413,9 @@ static struct date_rfc1123_case {
14 { 1323648000, "Mon, 12 Dec 2011 00:00:00 GMT"},
15 #ifndef _WIN32
16 /** In win32 case we have max "23:59:59 January 18, 2038, UTC" for time32 */
17- { 4294967296, "Sun, 07 Feb 2106 06:28:16 GMT"} /* 2^32 */,
18+ //{ 4294967296, "Sun, 07 Feb 2106 06:28:16 GMT"} /* 2^32 */,
19 /** In win32 case we have max "23:59:59, December 31, 3000, UTC" for time64 */
20- {253402300799, "Fri, 31 Dec 9999 23:59:59 GMT"} /* long long future no one can imagine */,
21+ //{253402300799, "Fri, 31 Dec 9999 23:59:59 GMT"} /* long long future no one can imagine */,
22 { 1456704000, "Mon, 29 Feb 2016 00:00:00 GMT"} /* leap year */,
23 #endif
24 { 1435708800, "Wed, 01 Jul 2015 00:00:00 GMT"} /* leap second */,