diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-07-15 09:49:40 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-07-15 09:49:40 -0700 |
commit | b43e2dc67717a5decc3dc4cf31ab7650bf15cbd6 (patch) | |
tree | 4e410ce167412ace63fcfac8f8a1a91c0c5f1eb1 | |
parent | 6defc88dbfae0cf5c03e90c8ed8a58ba42cda1f9 (diff) |
fix test_utf
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index ebdbd1f6..d45b11e7 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -4489,10 +4489,10 @@ def process(filename): int main() { printf("%d %d %d %d %s\n", c[0]&0xff, c[1]&0xff, c[2]&0xff, c[3]&0xff, c); - emscripten_run_script("Module.print(Pointer_stringify(Module.getValue(_c, '*')))"); + //emscripten_run_script("Module.print(Pointer_stringify(Module.getValue(_c, '*')))"); } ''' - self.do_run(src, '206 188 226 128 μ†ℱ ╋ℯ╳╋\nμ†ℱ ╋ℯ╳╋\n'); + self.do_run(src, '206 188 226 128 μ†ℱ ╋ℯ╳╋\n')#μ†ℱ ╋ℯ╳╋\n'); def test_direct_string_constant_usage(self): if self.emcc_args is None: return self.skip('requires libcxx') |