aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-03-18 15:05:12 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-03-18 15:07:17 -0700
commit9642a5128f37371565b53450c8428103b59500f8 (patch)
tree9b5beeb543dde01f91c6e4bb584a9c43a45b89fc /tests/runner.py
parent5685df86fd3a64f5b0e4acfbebab39559b96455d (diff)
check for utf and avoid the overhead if not necessary; remove UTF_STRING_SUPPORT
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 6ba0bcd7..c1a74e9e 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -6133,8 +6133,6 @@ def process(filename):
self.do_run(src, re.sub('(^|\n)\s+', '\\1', expected), post_build=add_pre_run_and_checks)
def test_utf(self):
- if self.emcc_args and 'UTF_STRING_SUPPORT=0' in self.emcc_args: return self.skip('need utf support')
-
self.banned_js_engines = [SPIDERMONKEY_ENGINE] # only node handles utf well
Settings.EXPORTED_FUNCTIONS = ['_main', '_malloc']
@@ -8815,7 +8813,7 @@ TT = %s
# asm.js
exec('asm2 = make_run("asm2", compiler=CLANG, emcc_args=["-O2", "-s", "ASM_JS=1"])')
- exec('asm2g = make_run("asm2g", compiler=CLANG, emcc_args=["-O2", "-s", "ASM_JS=1", "-g", "-s", "ASSERTIONS=1", "-s", "UTF_STRING_SUPPORT=0"])')
+ exec('asm2g = make_run("asm2g", compiler=CLANG, emcc_args=["-O2", "-s", "ASM_JS=1", "-g", "-s", "ASSERTIONS=1"])')
# Make custom runs with various options
for compiler, quantum, embetter, typed_arrays, llvm_opts in [