summaryrefslogtreecommitdiff
path: root/test/unit/test_warnings.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/test_warnings.py')
-rw-r--r--test/unit/test_warnings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/test_warnings.py b/test/unit/test_warnings.py
index 0717ae823..05fc11099 100644
--- a/test/unit/test_warnings.py
+++ b/test/unit/test_warnings.py
@@ -6,13 +6,13 @@ from . import utils
class WarningsText(utils.BinaryenTestCase):
def test_warn_on_no_passes(self):
- err = shared.run_process(shared.WASM_OPT + [self.input_path('asyncify-pure.wast'), '-o', 'a.wasm'], stderr=subprocess.PIPE).stderr
+ err = shared.run_process(shared.WASM_OPT + [self.input_path('asyncify-pure.wat'), '-o', 'a.wasm'], stderr=subprocess.PIPE).stderr
self.assertIn('warning: no passes specified, not doing any work', err)
def test_warn_on_no_output(self):
- err = shared.run_process(shared.WASM_OPT + [self.input_path('asyncify-pure.wast'), '-O1'], stderr=subprocess.PIPE).stderr
+ err = shared.run_process(shared.WASM_OPT + [self.input_path('asyncify-pure.wat'), '-O1'], stderr=subprocess.PIPE).stderr
self.assertIn('warning: no output file specified, not emitting output', err)
def test_quiet_suppresses_warnings(self):
- err = shared.run_process(shared.WASM_OPT + [self.input_path('asyncify-pure.wast'), '-q'], stderr=subprocess.PIPE).stderr
+ err = shared.run_process(shared.WASM_OPT + [self.input_path('asyncify-pure.wat'), '-q'], stderr=subprocess.PIPE).stderr
self.assertNotIn('warning', err)