From e16f65675b0096ecc83828e3d6c72bddae4c69f8 Mon Sep 17 00:00:00 2001 From: inikep Date: Fri, 17 Jun 2016 15:17:35 +0200 Subject: [PATCH] test-zstd-versions.py: fixed creation of dictionaries for v0.5.1+ --- tests/test-zstd-versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-zstd-versions.py b/tests/test-zstd-versions.py index b9a81521..e5e5ec90 100755 --- a/tests/test-zstd-versions.py +++ b/tests/test-zstd-versions.py @@ -69,7 +69,7 @@ def create_dict(tag, dict_source_path): if tag == 'v0.5.0': result = execute('./dictBuilder.' + tag + ' ' + ' '.join(cFiles) + ' ' + ' '.join(hFiles) + ' -o ' + dict_name, print_output=False, param_shell=True) else: - result = execute('./zstd.' + tag + ' ' + ' '.join(cFiles) + ' ' + ' '.join(hFiles) + ' -o ' + dict_name, print_output=False, param_shell=True) + result = execute('./zstd.' + tag + ' -f --train ' + ' '.join(cFiles) + ' ' + ' '.join(hFiles) + ' -o ' + dict_name, print_output=False, param_shell=True) if result == 0: print(dict_name + ' created') else: