(wasm)
| 14662 | |
| 14663 | def test_strip_all(self): |
| 14664 | def has_debug_section(wasm): |
| 14665 | with webassembly.Module('hello_world.wasm') as wasm: |
| 14666 | return wasm.get_custom_section('.debug_info') is not None |
| 14667 | |
| 14668 | # Use -O2 to ensure wasm-opt gets run |
| 14669 | self.cflags += ['-g', '-O2'] |
nothing calls this directly
no test coverage detected