diff options
Diffstat (limited to 'test/lit/source-map.wast')
-rw-r--r-- | test/lit/source-map.wast | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/lit/source-map.wast b/test/lit/source-map.wast index f8ef07c65..b4fc55374 100644 --- a/test/lit/source-map.wast +++ b/test/lit/source-map.wast @@ -110,4 +110,21 @@ ;;@ src.cpp:3 (nop) ) + + ;; CHECK: (func $symbolNames + ;; CHECK-NEXT: ;;@ /tmp/src.cpp:1:2:MyClass.myMethod + ;; CHECK-NEXT: (nop) + ;; CHECK-NEXT: ;;@ ../src.cpp:3:4:MyClass::myMethod + ;; CHECK-NEXT: (nop) + ;; CHECK-NEXT: ;;@ café.cpp:5:6:topLevelFunction + ;; CHECK-NEXT: (nop) + ;; CHECK-NEXT: ) + (func $symbolNames + ;;@ /tmp/src.cpp:1:2:MyClass.myMethod + (nop) + ;;@ ../src.cpp:3:4:MyClass::myMethod + (nop) + ;;@ café.cpp:5:6:topLevelFunction + (nop) + ) ) |