summaryrefslogtreecommitdiff
path: root/test/lit/basic/mutable-global.wast
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-01-02 12:08:33 -0800
committerGitHub <noreply@github.com>2024-01-02 12:08:33 -0800
commit95ed4f3f0bf0a463cee88a63c5becde4d28692ff (patch)
tree9aa47f97492132f134df4f30c33c7b143a03455b /test/lit/basic/mutable-global.wast
parent98cef80eabe2171bb3076767d68b25a85d268c12 (diff)
downloadbinaryen-95ed4f3f0bf0a463cee88a63c5becde4d28692ff.tar.gz
binaryen-95ed4f3f0bf0a463cee88a63c5becde4d28692ff.tar.bz2
binaryen-95ed4f3f0bf0a463cee88a63c5becde4d28692ff.zip
Match names more precisely in update_lit_checks.py (#6190)
Previously the lit test update script interpreted module names as the names of import items and export names as the names of export items, but it is more precise to use the actual identifiers of the imported or exported items as the names instead. Update update_lit_checks.py to use a more correct regex to match names and to correctly use the identifiers of import and export items as their names. In some cases this can improve the readability of test output.
Diffstat (limited to 'test/lit/basic/mutable-global.wast')
-rw-r--r--test/lit/basic/mutable-global.wast3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lit/basic/mutable-global.wast b/test/lit/basic/mutable-global.wast
index 154a40a19..fff5d8d5b 100644
--- a/test/lit/basic/mutable-global.wast
+++ b/test/lit/basic/mutable-global.wast
@@ -16,7 +16,6 @@
(type $0 (func))
;; CHECK-TEXT: (import "env" "global-mut" (global $global-mut (mut i32)))
;; CHECK-BIN: (import "env" "global-mut" (global $global-mut (mut i32)))
- ;; CHECK-BIN-NODEBUG: (import "env" "global-mut" (global $gimport$0 (mut i32)))
(import "env" "global-mut" (global $global-mut (mut i32)))
;; CHECK-TEXT: (func $foo (type $0)
@@ -44,6 +43,8 @@
)
)
)
+;; CHECK-BIN-NODEBUG: (import "env" "global-mut" (global $gimport$0 (mut i32)))
+
;; CHECK-BIN-NODEBUG: (func $0 (type $0)
;; CHECK-BIN-NODEBUG-NEXT: (global.set $gimport$0
;; CHECK-BIN-NODEBUG-NEXT: (i32.add