diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-30 19:01:31 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:21 -0800 |
commit | 876ac4a9b683c48d78698500ffee9ebff6130639 (patch) | |
tree | 867aebbd0298a20aeea4de28054ea9d77510be01 | |
parent | 30db3b5922b0bd82facb7115f7ce901fb2b06443 (diff) |
disable test_pgo in asm
-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 6c416146..1b6d817d 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -7265,6 +7265,8 @@ def process(filename): Settings.CORRECT_SIGNS = 0 def test_pgo(self): + if Settings.ASM_JS: return self.skip('asm does not support pgo') + if '-g' not in Building.COMPILER_TEST_OPTS: Building.COMPILER_TEST_OPTS.append('-g') Settings.PGO = Settings.CHECK_OVERFLOWS = Settings.CORRECT_OVERFLOWS = Settings.CHECK_SIGNS = Settings.CORRECT_SIGNS = 1 |