Skip to content
This repository was archived by the owner on Aug 22, 2022. It is now read-only.

Commit 5fe3d50

Browse files
committed
Revert "Debugging hack for Mac"
1 parent 753a65d commit 5fe3d50

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/build.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1616,16 +1616,12 @@ def ExecuteEmscriptenTestSuite(name, config, outdir, warn_only):
16161616
buildbot.Step('Execute emscripten testsuite (%s)' % name)
16171617
Mkdir(outdir)
16181618
try:
1619-
env = os.environ.copy()
1620-
env['EM_BUILD_VERBOSE'] = '3'
16211619
proc.check_call(
16221620
[os.path.join(INSTALL_DIR, 'emscripten', 'tests', 'runner.py'),
1623-
'binaryen2.test_the_bullet', '--em-config', config],
1624-
cwd=outdir, env=env)
1621+
'binaryen2', '--em-config', config],
1622+
cwd=outdir)
16251623
except proc.CalledProcessError:
16261624
buildbot.FailUnless(lambda: warn_only)
1627-
finally:
1628-
del env['EM_BUILD_VERBOSE']
16291625

16301626

16311627
def TestEmtest():

0 commit comments

Comments
 (0)