diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-22 21:26:17 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-22 21:26:17 -0800 |
commit | 8777d056f398bf87397641afbe9cae986305503c (patch) | |
tree | 7bedd2c637642600a57e9dadfaa0ed311e323895 | |
parent | 590d12c35384b20998516cddc66d88c0e154f2da (diff) |
do not use named globals in fastcomp
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 3e141635..2430aa1c 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -4623,7 +4623,7 @@ return malloc(size); self.do_run_from_file(src, output) def test_gcc_unmangler(self): - Settings.NAMED_GLOBALS = 1 # test coverage for this + if os.environ.get('EMCC_FAST_COMPILER') != '1': Settings.NAMED_GLOBALS = 1 # test coverage for this Building.COMPILER_TEST_OPTS += ['-I' + path_from_root('third_party')] |