diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-07-15 13:50:05 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-07-15 13:50:05 -0700 |
commit | f1d11329a4d309682f0deb5c4cb2671fea8c9c00 (patch) | |
tree | 284fa99a0b58264c7870b7ed7a0aaf545d42a854 /tests/runner.py | |
parent | 83b96fcd9d9c060f3ea063cec04e603af4442de0 (diff) |
utf parsing in writeStringToMemory as well
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/runner.py b/tests/runner.py index d45b11e7..a434ce3b 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -4485,14 +4485,15 @@ def process(filename): #include <stdio.h> #include <emscripten.h> - char *c = "μ†ℱ ╋ℯ╳╋"; - int main() { + char *c = "μ†ℱ ╋ℯ╳╋"; 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("cheez = Module._malloc(100);" + "Module.writeStringToMemory(\"μ†ℱ ╋ℯ╳╋\", cheez);" + "Module.print([Pointer_stringify(cheez), Module.getValue(cheez, 'i8')&0xff, Module.getValue(cheez+1, 'i8')&0xff, Module.getValue(cheez+2, 'i8')&0xff, Module.getValue(cheez+3, 'i8')&0xff, ]);"); } ''' - self.do_run(src, '206 188 226 128 μ†ℱ ╋ℯ╳╋\n')#μ†ℱ ╋ℯ╳╋\n'); + self.do_run(src, '206 188 226 128 μ†ℱ ╋ℯ╳╋\nμ†ℱ ╋ℯ╳╋,206,188,226,128\n'); def test_direct_string_constant_usage(self): if self.emcc_args is None: return self.skip('requires libcxx') |