Skip to content

Commit 32dedc6

Browse files
authored
Fix enabling wasm thread tests from env var (emscripten-core#6302)
* remove TEST_WASM_PTHREADS check
1 parent 98e33e9 commit 32dedc6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

tests/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ def btest(self, filename, expected=None, reference=None, force_c=False, referenc
991991
if not manual_reference:
992992
args = args + ['--pre-js', 'reftest.js', '-s', 'GL_TESTING=1']
993993
all_args = [PYTHON, EMCC, '-s', 'IN_TEST_HARNESS=1', temp_filepath, '-o', outfile] + args
994-
#print 'all args:', all_args
994+
#print('all args:', all_args)
995995
try_delete(outfile)
996996
Popen(all_args).communicate()
997997
assert os.path.exists(outfile)

tests/test_browser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ class browser(BrowserCore):
6464
def setUpClass(self):
6565
super(browser, self).setUpClass()
6666
self.browser_timeout = 20
67-
self.test_wasm_pthreads = os.environ.get('TEST_WASM_PTHREADS', '0') == '1'
6867
print()
6968
print('Running the browser tests. Make sure the browser allows popups from localhost.')
7069
print()

0 commit comments

Comments
 (0)