diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-05-07 18:21:54 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-05-07 18:21:54 -0700 |
commit | 63a76fbbfdf536fa7b69be351611b9f9772d86c3 (patch) | |
tree | f82c632c807b72ee3a94f841452f6b87dfa5e453 | |
parent | 1ed2d7fdb3dde1b91a295291cd043a678e12e47a (diff) |
fix test runner is_le32
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 773cb157..ead85948 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -509,7 +509,7 @@ if 'benchmark' not in str(sys.argv) and 'sanity' not in str(sys.argv) and 'brows post_build=None) # post_build was already done in ll_to_js, this do_run call is just to test the output def is_le32(self): - return 'le32-unknown-nacl' in COMPILER_OPTS or self.env.get('EMCC_LLVM_TARGET') == 'le32-unknown-nacl' + return not ('i386-pc-linux-gnu' in COMPILER_OPTS or self.env.get('EMCC_LLVM_TARGET') == 'i386-pc-linux-gnu') def test_hello_world(self): src = ''' |