From 42b61e3c2e7851ed001bf26a7e1afab21d0cb38d Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Sun, 8 Dec 2019 20:50:25 -0600 Subject: Use wat over wast for text format filenames (#2518) --- test/unit/test_finalize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/unit/test_finalize.py') diff --git a/test/unit/test_finalize.py b/test/unit/test_finalize.py index 9a5c3c750..ff4eebd9c 100644 --- a/test/unit/test_finalize.py +++ b/test/unit/test_finalize.py @@ -8,7 +8,7 @@ class EmscriptenFinalizeTest(utils.BinaryenTestCase): def test_em_asm_mangled_string(self): input_dir = os.path.dirname(__file__) p = shared.run_process(shared.WASM_EMSCRIPTEN_FINALIZE + [ - os.path.join(input_dir, 'input', 'em_asm_mangled_string.wast'), '-o', os.devnull, '--global-base=1024' + os.path.join(input_dir, 'input', 'em_asm_mangled_string.wat'), '-o', os.devnull, '--global-base=1024' ], check=False, capture_output=True) self.assertNotEqual(p.returncode, 0) self.assertIn('Fatal: local.get of unknown in arg0 of call to emscripten_asm_const_int (used by EM_ASM* macros) in function main.', p.stderr) -- cgit v1.2.3