Skip to content

Commit

Permalink
Fix error on run-tests.py
Browse files Browse the repository at this point in the history
Signed-off-by: Seonghyun Kim <[email protected]>
  • Loading branch information
ksh8281 authored and clover2123 committed Jun 13, 2024
1 parent 1050ee4 commit f646e36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit f646e36

Please sign in to comment.