From 7eb35c5dc97a84a3170610f1604f6b0e8d7ea47e Mon Sep 17 00:00:00 2001 From: Seonghyun Kim Date: Thu, 13 Jun 2024 10:13:23 +0900 Subject: [PATCH] Fix error on run-tests.py Signed-off-by: Seonghyun Kim --- tools/run-tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/run-tests.py b/tools/run-tests.py index f62275329..a1d390f6b 100755 --- a/tools/run-tests.py +++ b/tools/run-tests.py @@ -336,7 +336,7 @@ def run_spidermonkey_dump(engine, arch, extra_arg): log_path = join(SPIDERMONKEY_OVERRIDE_DIR, '%s.log.txt' % arch) if not os.path.exists(log_path): - run_spidermonkey(engine, arch) + run_spidermonkey(engine, arch, extra_arg) log = sorted(readfile(log_path)) for idx, x in enumerate(log): @@ -392,7 +392,7 @@ def run_jsc_stress_dump(engine, arch, extra_arg): log_path = join(JSC_DIR, 'jsc.stress.%s.gen.txt' % arch) if not os.path.exists(log_path): - run_jsc_stress(engine, arch) + run_jsc_stress(engine, arch, extra_arg) log = readfile(log_path) with open(join(JSC_DIR, 'jsc.stress.%s.data.txt' % arch), "w") as output: