diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-03-05 13:30:14 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-03-05 13:30:14 -0800 |
commit | 5774e5d0cff190488bb9eec61d3aaa68d4450f21 (patch) | |
tree | d55fa3edc0bf4fc351c1984e363a1335a5792106 /tests | |
parent | baab492299fa9f2bd3717d55f98d3faa5e4ae4e8 (diff) |
emscripten_debugger()
Diffstat (limited to 'tests')
-rw-r--r-- | tests/core/test_inlinejs3.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/core/test_inlinejs3.in b/tests/core/test_inlinejs3.in index 12e31007..da720a3d 100644 --- a/tests/core/test_inlinejs3.in +++ b/tests/core/test_inlinejs3.in @@ -4,6 +4,7 @@ int main(int argc, char **argv) { EM_ASM(Module.print('hello dere1')); EM_ASM("Module.print('hello dere2');"); + emscripten_debugger(); // does nothing in shells; check for validation error though for (int i = 0; i < 3; i++) { EM_ASM(Module.print('hello dere3'); Module.print('hello dere' + 4);); } |