summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/test-lz4-versions.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test-lz4-versions.py b/test/test-lz4-versions.py
index 9b7e0c5..b6ed126 100644
--- a/test/test-lz4-versions.py
+++ b/test/test-lz4-versions.py
@@ -112,12 +112,12 @@ if __name__ == '__main__':
print('Decompression tests and verifications')
lz4s = sorted(glob.glob('*.lz4'))
for lz4 in lz4s:
- print(lz4, end=" ", flush=True)
+ print(lz4, end=" ")
for tag in tags:
- print(tag, end=" ", flush=True)
+ print(tag, end=" ")
proc(['./lz4c.' + tag, '-df', lz4, lz4 + '_d64_' + tag + '.dec'])
proc(['./lz4c32.' + tag, '-df', lz4, lz4 + '_d32_' + tag + '.dec'])
- print(' OK')
+ print(' OK') # well, here, decompression has worked; but file is not yet verified
# Compare all '.dec' files with test_dat
decs = glob.glob('*.dec')