Skip to content

Commit b5c68f6

Browse files
committed
Use -fexceptions for test_rust_gxx_personality_v0
IIUC, the original issue was about Rust referencing this symbol in panic=unwind mode, which is using Emscripten's exceptions, but the test was verifying that the symbol exists even with exceptions disabled. Now that the two modes are better separated, the test needs to be updated.
1 parent 90e8f3c commit b5c68f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_other.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12999,7 +12999,7 @@ def test_rust_gxx_personality_v0(self):
1299912999
return 0;
1300013000
}
1300113001
}
13002-
''', assert_returncode=NON_ZERO)
13002+
''', assert_returncode=NON_ZERO, emcc_args=['-fexceptions'])
1300313003

1300413004
def test_bigint64array_polyfill(self):
1300513005
bigint64array = read_file(path_from_root('src/polyfill/bigint64array.js'))

0 commit comments

Comments
 (0)