Skip to content

Commit 0629608

Browse files
committed
Revert "Disable tests to allow LLVM to roll in (#12337)"
This reverts commit 270f795.
1 parent af889b0 commit 0629608

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

tests/test_core.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7750,7 +7750,6 @@ def test_stack_overflow_check(self):
77507750
self.emcc_args += ['-DONE_BIG_STRING']
77517751
self.do_runf(path_from_root('tests', 'stack_overflow.cpp'), 'stack overflow', assert_returncode=NON_ZERO)
77527752

7753-
@unittest.skip('let llvm roll in')
77547753
@node_pthreads
77557754
def test_binaryen_2170_emscripten_atomic_cas_u8(self):
77567755
self.emcc_args += ['-s', 'USE_PTHREADS=1']
@@ -8163,7 +8162,6 @@ def test_fpic_static(self):
81638162
self.emcc_args.append('-fPIC')
81648163
self.do_run_in_out_file_test('tests', 'core', 'test_hello_world.c')
81658164

8166-
@unittest.skip('let llvm roll in')
81678165
@node_pthreads
81688166
def test_pthread_create(self):
81698167
self.set_setting('-lbrowser.js')
@@ -8184,7 +8182,6 @@ def test_pthread_exceptions(self):
81848182
self.emcc_args += ['-fexceptions']
81858183
self.do_run_in_out_file_test('tests', 'core', 'pthread', 'exceptions.cpp')
81868184

8187-
@unittest.skip('let llvm roll in')
81888185
def test_emscripten_atomics_stub(self):
81898186
self.do_run_in_out_file_test('tests', 'core', 'pthread', 'emscripten_atomics.c')
81908187

@@ -8194,7 +8191,6 @@ def test_emscripten_atomics(self):
81948191
self.set_setting('USE_PTHREADS', '1')
81958192
self.do_run_in_out_file_test('tests', 'core', 'pthread', 'emscripten_atomics.c')
81968193

8197-
@unittest.skip('let llvm roll in')
81988194
@no_asan('incompatibility with atomics')
81998195
@node_pthreads
82008196
def test_emscripten_futexes(self):

tests/test_other.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2563,7 +2563,6 @@ def test_fs_stream_proto(self):
25632563
out = self.run_js('a.out.js', engine=engine)
25642564
self.assertContained('File size: 724', out)
25652565

2566-
@unittest.skip('let llvm roll in')
25672566
def test_node_emscripten_num_logical_cores(self):
25682567
# Test with node.js that the emscripten_num_logical_cores method is working
25692568
create_test_file('src.cpp', r'''
@@ -7890,7 +7889,6 @@ def test_node_js_run_from_different_directory(self):
78907889
self.assertContained('hello, world!', ret)
78917890

78927891
# Tests that a pthreads + modularize build can be run in node js
7893-
@unittest.skip('let llvm roll in')
78947892
def test_node_js_pthread_module(self):
78957893
# create module loader script
78967894
moduleLoader = 'moduleLoader.js'
@@ -8816,7 +8814,6 @@ def test_asan_no_stack_trace(self):
88168814
def test_asan_pthread_stubs(self):
88178815
self.do_smart_test(path_from_root('tests', 'other', 'test_asan_pthread_stubs.c'), emcc_args=['-fsanitize=address', '-s', 'ALLOW_MEMORY_GROWTH=1'])
88188816

8819-
@unittest.skip('let llvm roll in')
88208817
def test_proxy_to_pthread_stack(self):
88218818
with js_engines_modify([NODE_JS + ['--experimental-wasm-threads', '--experimental-wasm-bulk-memory']]):
88228819
self.do_smart_test(path_from_root('tests', 'other', 'test_proxy_to_pthread_stack.c'),
@@ -9212,7 +9209,6 @@ def test_backwards_deps_in_archive(self):
92129209
self.run_process([EMCC, 'empty.c', '-la', '-L.'])
92139210
self.assertContained('success', self.run_js('a.out.js'))
92149211

9215-
@unittest.skip('let llvm roll in')
92169212
def test_warning_flags(self):
92179213
self.run_process([EMCC, '-c', '-o', 'hello.o', path_from_root('tests', 'hello_world.c')])
92189214
cmd = [EMCC, 'hello.o', '-o', 'a.js', '-g', '--closure', '1']

0 commit comments

Comments
 (0)