diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-27 15:29:42 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-27 15:29:42 -0700 |
commit | 33021c21d9278ddb1b5a1f49b795a7bdbf4804ef (patch) | |
tree | 91f588cf8b2e274b2f776471c317bdcf07fe6e97 | |
parent | d103edbfe2c990b8bef7a070aaf4b7cea9f92622 (diff) |
fix test_indirectbr
-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 55b587d7..cd9bea63 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -4230,6 +4230,8 @@ def process(filename): ''', args=['34962', '26214', '35040']) def test_indirectbr(self): + Building.COMPILER_TEST_OPTS = filter(lambda x: x != '-g', Building.COMPILER_TEST_OPTS) + src = ''' #include <stdio.h> int main(void) { |