diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-27 15:24:38 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-27 15:24:38 -0700 |
commit | d103edbfe2c990b8bef7a070aaf4b7cea9f92622 (patch) | |
tree | f6058c7f60c596f04ce6bec950639fe625e2a933 | |
parent | ff96c4c0b6404a48c71658cc8de9689272bc42fd (diff) |
fix test_openjpeg
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index d73be48b..55b587d7 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -8472,6 +8472,8 @@ def process(filename): def test_openjpeg(self): if self.emcc_args is None: return self.skip('needs libc for getopt') + Building.COMPILER_TEST_OPTS = filter(lambda x: x != '-g', Building.COMPILER_TEST_OPTS) # remove -g, so we have one test without it by default + if Settings.USE_TYPED_ARRAYS == 2: Settings.CORRECT_SIGNS = 1 else: |