From 3cc5a4fcaea8f1e2fd47c53135b53f8edcb8619d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 5 Apr 2023 07:01:18 -0400 Subject: Factor out and rewrite command-line interface --- test/run_suite.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/run_suite.py') diff --git a/test/run_suite.py b/test/run_suite.py index 16e527af..52a418ef 100755 --- a/test/run_suite.py +++ b/test/run_suite.py @@ -40,8 +40,7 @@ TEST_TYPES = [ def run_eval_test(command, in_path, good_path, out_path): """Run a positive eval test and return whether the output matches.""" - syntax = util.syntax_from_path(out_path) - command = command + ["-O", syntax, "-w", out_path, in_path] + command = command + ["-o", out_path, in_path] subprocess.check_call(command, encoding="utf-8") with open(good_path, "r", encoding="utf-8") as good: -- cgit v1.2.1