summaryrefslogtreecommitdiff
path: root/gen_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'gen_tests.py')
-rw-r--r--gen_tests.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/gen_tests.py b/gen_tests.py
index 8e801b5..ef832fe 100644
--- a/gen_tests.py
+++ b/gen_tests.py
@@ -27,12 +27,9 @@ def main():
# the daterange we test against - zdump understands v2 format
# files and will output historical records we can't cope with
# otherwise.
- command = [zdump, '-v', '-c', '1902,2038', zone]
+ command = [zdump, '-V', '-c', '1902,2038', zone]
zd_out = subprocess.check_output(command, encoding="utf8")
- # Skip bogus output on 64bit architectures, per Bug #213816
- lines = [
- line.strip() for line in zd_out.splitlines()
- if not (line.strip().endswith('NULL') or '214748' in line)]
+ lines = [line.strip() for line in zd_out.splitlines()]
for line in lines:
print(line, file=datf)