diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-23 18:35:19 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-23 18:35:19 -0800 |
commit | f5714fb81826f87847a5564711294988fbb15e88 (patch) | |
tree | e8e6f9667c8ef72e43aece50a1a90fdc5024bd07 | |
parent | b815c4536447aebdb1377b9325efe121fd17c5db (diff) |
disable bsearch test in q1
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 342bdc4d..7d5a9580 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -2204,6 +2204,8 @@ def process(filename): self.do_run(src) def test_bsearch(self): + if Settings.QUANTUM_SIZE == 1: return self.skip('Test cannot work with q1') + src = ''' #include <stdlib.h> #include <stdio.h> |