From e9d8703d108bd47e7abc3f0c369c09b925a78ebc Mon Sep 17 00:00:00 2001 From: Stuart Bishop Date: Sun, 26 Sep 2021 19:49:19 +1000 Subject: Skip tests for unparseable years --- gen_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_tests.py b/gen_tests.py index 5ba0648..8e801b5 100644 --- a/gen_tests.py +++ b/gen_tests.py @@ -32,7 +32,7 @@ def main(): # Skip bogus output on 64bit architectures, per Bug #213816 lines = [ line.strip() for line in zd_out.splitlines() - if not line.strip().endswith('NULL')] + if not (line.strip().endswith('NULL') or '214748' in line)] for line in lines: print(line, file=datf) -- cgit v1.2.1