From b70d8dff27ccea2d4546909dba83bf8cae072aba Mon Sep 17 00:00:00 2001 From: Jérôme Vouillon Date: Wed, 15 May 2024 15:32:08 -0400 Subject: Debug location parser: accept arbitrary paths (#6594) The whole annotation was parsed as a keyword, which prevented file paths with non-ascii characters or paths starting with `/` or `.`. Also, there was a typo: one was comparing `fileSize` rather than `lineSize` to `contents->npos`. --- test/lit/source-map.wast | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) (limited to 'test/lit/source-map.wast') diff --git a/test/lit/source-map.wast b/test/lit/source-map.wast index c00374d67..f8ef07c65 100644 --- a/test/lit/source-map.wast +++ b/test/lit/source-map.wast @@ -10,9 +10,9 @@ (module ;;@ src.cpp:0:1 - ;; CHECK: (type $0 (func (param i32 i32))) + ;; CHECK: (type $0 (func)) - ;; CHECK: (type $1 (func)) + ;; CHECK: (type $1 (func (param i32 i32))) ;; CHECK: (func $foo (param $x i32) (param $y i32) ;; CHECK-NEXT: ;;@ src.cpp:10:1 @@ -88,4 +88,26 @@ ;;@ src.cpp:3:1 (return) ) + + ;; CHECK: (func $paths + ;; CHECK-NEXT: ;;@ /tmp/src.cpp:1:1 + ;; CHECK-NEXT: (nop) + ;; CHECK-NEXT: ;;@ ../src.cpp:2:2 + ;; CHECK-NEXT: (nop) + ;; CHECK-NEXT: ;;@ café.cpp:2:2 + ;; CHECK-NEXT: (nop) + ;; CHECK-NEXT: ;;@ café.cpp:2:2 + ;; CHECK-NEXT: (nop) + ;; CHECK-NEXT: ) + (func $paths + ;;@ /tmp/src.cpp:1:1 + (nop) + ;;@ ../src.cpp:2:2 + (nop) + ;;@ café.cpp:2:2 + (nop) + ;; This annotation is invalid (missing column) + ;;@ src.cpp:3 + (nop) + ) ) -- cgit v1.2.3