| 36 | |
| 37 | |
| 38 | void check(bool success) { |
| 39 | if (!success) { |
| 40 | printf("> Error, expected success\n"); |
| 41 | exit(1); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | void check_table(wasm_table_t* table, int32_t i, bool expect_set) { |
| 46 | own wasm_ref_t* ref = wasm_table_get(table, i); |
no outgoing calls
no test coverage detected