summaryrefslogtreecommitdiff
path: root/test/unit/test_features.py
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2021-06-18 14:20:03 -0700
committerGitHub <noreply@github.com>2021-06-18 14:20:03 -0700
commit28e88b9f993a2e45662fde0b10920aa22e7b1b7f (patch)
tree77bbd5f1dd1bfcb089b12f6fa9fcf828c135c099 /test/unit/test_features.py
parent97e277c51218778d1d76fd59fed3b4ca7756382e (diff)
downloadbinaryen-28e88b9f993a2e45662fde0b10920aa22e7b1b7f.tar.gz
binaryen-28e88b9f993a2e45662fde0b10920aa22e7b1b7f.tar.bz2
binaryen-28e88b9f993a2e45662fde0b10920aa22e7b1b7f.zip
[EH] Replace event with tag (#3937)
We recently decided to change 'event' to 'tag', and to 'event section' to 'tag section', out of the rationale that the section contains a generalized tag that references a type, which may be used for something other than exceptions, and the name 'event' can be confusing in the web context. See - https://github.com/WebAssembly/exception-handling/issues/159#issuecomment-857910130 - https://github.com/WebAssembly/exception-handling/pull/161
Diffstat (limited to 'test/unit/test_features.py')
-rw-r--r--test/unit/test_features.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/unit/test_features.py b/test/unit/test_features.py
index 0186e2ba7..06e2661d1 100644
--- a/test/unit/test_features.py
+++ b/test/unit/test_features.py
@@ -184,16 +184,16 @@ class FeatureValidationTest(utils.BinaryenTestCase):
'''
self.check_reference_types(module, 'all used types should be allowed')
- def test_event(self):
+ def test_tag(self):
module = '''
(module
- (event $e (attr 0) (param i32))
+ (tag $e (attr 0) (param i32))
(func $foo
(throw $e (i32.const 0))
)
)
'''
- self.check_exception_handling(module, 'Module has events')
+ self.check_exception_handling(module, 'Module has tags')
def test_multivalue_import(self):
module = '''
@@ -218,13 +218,13 @@ class FeatureValidationTest(utils.BinaryenTestCase):
self.check_multivalue(module, 'Multivalue function results ' +
'(multivalue is not enabled)')
- def test_multivalue_event(self):
+ def test_multivalue_tag(self):
module = '''
(module
- (event $foo (attr 0) (param i32 i64))
+ (tag $foo (attr 0) (param i32 i64))
)
'''
- self.check_multivalue_exception_handling(module, 'Multivalue event type ' +
+ self.check_multivalue_exception_handling(module, 'Multivalue tag type ' +
'(multivalue is not enabled)')
def test_multivalue_block(self):