diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-12 08:47:49 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-12 08:47:49 -0800 |
commit | 57b8e5a49801661495b14ddc33c4775c7844e174 (patch) | |
tree | 483222e08fbada0e2b4aadeb42e53994375ab059 /tests | |
parent | 1b031e02d33baa0889f906b7c1ec2f04fabe16d5 (diff) |
ignore first L when demangling, literalness is irrelevant to the main name
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_other.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_other.py b/tests/test_other.py index a2a1448f..3a781042 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -1927,6 +1927,7 @@ done. EM_ASM(Module.print(demangle('_main'))); EM_ASM(Module.print(demangle('__Z2f2v'))); EM_ASM(Module.print(demangle('__Z12abcdabcdabcdi'))); + EM_ASM(Module.print(demangle('__ZL12abcdabcdabcdi'))); EM_ASM(Module.print(demangle('__Z4testcsifdPvPiPc'))); EM_ASM(Module.print(demangle('__ZN4test5moarrEcslfdPvPiPc'))); EM_ASM(Module.print(demangle('__ZN4Waka1f12a234123412345pointEv'))); @@ -1949,6 +1950,7 @@ done. _main f2() abcdabcdabcd(int) +abcdabcdabcd(int) test(char, short, int, float, double, void*, int*, char*) test::moarr(char, short, long, float, double, void*, int*, char*) Waka::f::a23412341234::point() |