aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_suite.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-04-05 07:01:18 -0400
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:08 -0500
commit3cc5a4fcaea8f1e2fd47c53135b53f8edcb8619d (patch)
tree4496d7af98b1033630d992db1b8788077ebda8f6 /test/run_suite.py
parent89acd9d099bd46c1cbf17ee3a7bb78610a8138fe (diff)
downloadserd-3cc5a4fcaea8f1e2fd47c53135b53f8edcb8619d.tar.gz
serd-3cc5a4fcaea8f1e2fd47c53135b53f8edcb8619d.tar.bz2
serd-3cc5a4fcaea8f1e2fd47c53135b53f8edcb8619d.zip
Factor out and rewrite command-line interface
Diffstat (limited to 'test/run_suite.py')
-rwxr-xr-xtest/run_suite.py3
1 files changed, 1 insertions, 2 deletions
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: