summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gen_tests.py2
1 files changed, 1 insertions, 1 deletions
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)