(self)
| 2319 | @no_ubsan('local count too large for VMs') |
| 2320 | @no_wasm2js('extremely deep nesting, hits stack limit on some VMs') |
| 2321 | def test_indirectbr_many(self): |
| 2322 | if not self.is_optimizing(): |
| 2323 | self.skipTest('nodejs takes ~1.8GB to compile this if the wasm is not optimized, which can cause OOM on the test runners') |
| 2324 | self.do_core_test('test_indirectbr_many.c') |
| 2325 | |
| 2326 | def test_pack(self): |
| 2327 | src = ''' |
nothing calls this directly
no test coverage detected