aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-11-03 18:44:14 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-11-03 18:44:14 -0700
commit4b1105b04d2f1d9f5290ce0b7ec2b13f85289c45 (patch)
treebcf0506136b0ac99dace6ee6241a6fd60941fe12 /tests/runner.py
parentb5b211ebbb922f23ed58a91c9d83d4b3fe4e205c (diff)
run bullet and sqlite tests with more js engines
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/runner.py b/tests/runner.py
index f07e0991..25b30965 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -5778,8 +5778,7 @@ def process(filename):
open(path_from_root('tests', 'sqlite', 'benchmark.c'), 'r').read(),
open(path_from_root('tests', 'sqlite', 'benchmark.txt'), 'r').read(),
includes=[path_from_root('tests', 'sqlite')],
- force_c=True,
- js_engines=[SPIDERMONKEY_ENGINE]) # V8 is slow
+ force_c=True)
def test_zlib(self):
if self.emcc_args is not None and '-O2' in self.emcc_args:
@@ -5810,8 +5809,7 @@ def process(filename):
os.path.join('src', '.libs', 'libBulletCollision.a'),
os.path.join('src', '.libs', 'libLinearMath.a')],
configure_args=['--disable-demos','--disable-dependency-tracking']),
- includes=[path_from_root('tests', 'bullet', 'src')],
- js_engines=[SPIDERMONKEY_ENGINE]) # V8 issue 1407
+ includes=[path_from_root('tests', 'bullet', 'src')])
def test_poppler(self):
if self.emcc_args is None: return self.skip('very slow, we only do this in emcc runs')