Skip to content

Commit 785f57c

Browse files
committed
switch test
1 parent 07f3b16 commit 785f57c

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

test/lit/dwarf.wast

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
;; flatten should warn about DWARF incompatibility
2+
;; RUN: wasm-opt -g unit/input/dwarf/cubescript.wasm --flatten 2>&1 | filecheck %s --check-prefix WARN
3+
;; WARN: not fully compatible with DWARF
4+
5+
;; safe passes should not warn
6+
;; RUN: wasm-opt -g unit/input/dwarf/cubescript.wasm --metrics 2>&1 | filecheck %s --check-prefix OK
7+
;; OK-NOT: not fully compatible with DWARF

test/unit/test_dwarf.py

-11
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,3 @@ def test_no_crash(self):
1515
args = [os.path.join(path, name)] + \
1616
['-g', '--dwarfdump', '--roundtrip', '--dwarfdump']
1717
shared.run_process(shared.WASM_OPT + args, capture_output=True)
18-
19-
def test_dwarf_incompatibility(self):
20-
warning = 'not fully compatible with DWARF'
21-
path = self.input_path(os.path.join('dwarf', 'cubescript.wasm'))
22-
args = [path, '-g']
23-
# flatten warns
24-
err = shared.run_process(shared.WASM_OPT + args + ['--flatten'], stderr=subprocess.PIPE).stderr
25-
self.assertIn(warning, err)
26-
# safe passes do not
27-
err = shared.run_process(shared.WASM_OPT + args + ['--metrics'], stderr=subprocess.PIPE).stderr
28-
self.assertNotIn(warning, err)

0 commit comments

Comments
 (0)