We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c7ac7 commit 39ba937Copy full SHA for 39ba937
test/test_core.py
@@ -9163,11 +9163,15 @@ def test_fpic_static(self):
9163
# Test is disabled on standalone because of flakes, see
9164
# https://github.com/emscripten-core/emscripten/issues/18405
9165
# @also_with_standalone_wasm(impure=True)
9166
+ @parameterized({
9167
+ '': ([],),
9168
+ 'sync_instantiation': (['-sWASM_ASYNC_COMPILATION=0'],),
9169
+ })
9170
@node_pthreads
- def test_pthread_create(self):
9171
+ def test_pthread_create(self, args):
9172
self.set_setting('ENVIRONMENT', 'node')
9173
self.set_setting('STRICT')
- self.do_core_test('pthread/create.c')
9174
+ self.do_core_test('pthread/create.c', cflags=args)
9175
9176
9177
@parameterized({
0 commit comments