aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-11-13 20:45:14 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-11-13 20:45:14 -0800
commit5b09129a27a5ee02f191c50f894de0e77237d392 (patch)
treebd508e9bf570765b9d89cea2f6090ceec3f6c947 /tests/runner.py
parent811e8840097e7a53a35dd3703970e5eaa19f01fa (diff)
simplify typed array code, support for .set() on typed arrays, and remove option to fallback from typed arrays
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 36226769..6ab84708 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -243,8 +243,8 @@ if 'benchmark' not in str(sys.argv):
# Run in both JavaScript engines, if optimizing - significant differences there (typed arrays)
if js_engines is None:
js_engines = [SPIDERMONKEY_ENGINE, V8_ENGINE]
- if Settings.USE_TYPED_ARRAYS == 2:
- js_engines = [SPIDERMONKEY_ENGINE] # when oh when will v8 support typed arrays in the console
+ if Settings.USE_TYPED_ARRAYS:
+ js_engines = [SPIDERMONKEY_ENGINE] # V8 issue 1822
js_engines = filter(lambda engine: os.path.exists(engine[0]), js_engines)
assert len(js_engines) > 0, 'No JS engine present to run this test with. Check ~/.emscripten and the paths therein.'
for engine in js_engines: