From f7afec956917c51071867f5b1b487111f1a1ef60 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Mon, 25 Nov 2024 15:58:58 -0800 Subject: [tests] Fix wasm2js test command line generation (#7114) --emscripten is added to the command line if the filename contains the string 'emscripten', but the current logic includes the cwd, so it fails if the tests are run from a directory with 'emscripten' in the name. Fix it so the test only includes the basename. --- scripts/test/wasm2js.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/test/wasm2js.py b/scripts/test/wasm2js.py index d716e5fe6..1f6ca4f8a 100644 --- a/scripts/test/wasm2js.py +++ b/scripts/test/wasm2js.py @@ -81,9 +81,9 @@ def test_wasm2js_output(): '--disable-exception-handling'] if opt: cmd += ['-O'] - if 'emscripten' in t: + if 'emscripten' in basename: cmd += ['--emscripten'] - if 'deterministic' in t: + if 'deterministic' in basename: cmd += ['--deterministic'] js = support.run_command(cmd) all_js.append(js) -- cgit v1.2.3