diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-08-30 15:03:23 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-08-30 15:15:36 -0700 |
commit | 2667b5806edcab3043ca3f58f6408158ff6dfd47 (patch) | |
tree | 273f5663cb58b44bc88e6f54c8c5362ee826225f | |
parent | 249e75b46f07ebca6cce1b648b5d34bc4a75792c (diff) |
fix test_atoX
-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 ec2f290f..a11928e1 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -4039,7 +4039,7 @@ at function.:blag self.do_run(src, re.sub('(^|\n)\s+', '\\1', expected)) def test_atoX(self): - if Settings.QUANTUM_SIZE != 4: return self.skip('need q4 for atoll') + if self.emcc_args is None: return self.skip('requires ta2') src = r''' #include <stdio.h> |