diff options
author | Zach van Rijn <me@zv.io> | 2021-10-29 03:08:22 +0000 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2021-10-29 03:08:22 +0000 |
commit | ebe5b10441eb3889a40ad355c0e00806222e702e (patch) | |
tree | 9a0e60e5a6a380748598b01961879398787d9ab6 /system/findutils/gnulib-test-datetime.patch | |
parent | 7430b52ee7e743a225f3ccb7b4326bb84c2f9c87 (diff) | |
parent | ad9bdf63fa5c1907ddd631a74f4bca942d9d021e (diff) | |
download | packages-ebe5b10441eb3889a40ad355c0e00806222e702e.tar.gz packages-ebe5b10441eb3889a40ad355c0e00806222e702e.tar.bz2 packages-ebe5b10441eb3889a40ad355c0e00806222e702e.tar.xz packages-ebe5b10441eb3889a40ad355c0e00806222e702e.zip |
Merge branch 'awilfox/fix/2021-10-automated-builds' into 'master'
Fix automated builds for some packages
See merge request adelie/packages!634
Diffstat (limited to 'system/findutils/gnulib-test-datetime.patch')
-rw-r--r-- | system/findutils/gnulib-test-datetime.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/system/findutils/gnulib-test-datetime.patch b/system/findutils/gnulib-test-datetime.patch deleted file mode 100644 index 2b227fc27..000000000 --- a/system/findutils/gnulib-test-datetime.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- coreutils-8.31/gnulib-tests/test-parse-datetime.c.old 2019-06-01 07:46:25.716292871 +0000 -+++ coreutils-8.31/gnulib-tests/test-parse-datetime.c 2019-06-01 22:07:59.456653669 +0000 -@@ -432,21 +432,5 @@ - ASSERT ( parse_datetime (&result, "TZ=\"\\\\\"", &now)); - ASSERT ( parse_datetime (&result, "TZ=\"\\\"\"", &now)); - -- /* Outlandishly-long time zone abbreviations should not cause problems. */ -- { -- static char const bufprefix[] = "TZ=\""; -- enum { tzname_len = 2000 }; -- static char const bufsuffix[] = "0\" 1970-01-01 01:02:03.123456789"; -- enum { bufsize = sizeof bufprefix - 1 + tzname_len + sizeof bufsuffix }; -- char buf[bufsize]; -- memcpy (buf, bufprefix, sizeof bufprefix - 1); -- memset (buf + sizeof bufprefix - 1, 'X', tzname_len); -- strcpy (buf + bufsize - sizeof bufsuffix, bufsuffix); -- ASSERT (parse_datetime (&result, buf, &now)); -- LOG (buf, now, result); -- ASSERT (result.tv_sec == 1 * 60 * 60 + 2 * 60 + 3 -- && result.tv_nsec == 123456789); -- } -- - return 0; - } |