From 443345400df5eb8a0da1c5362009232efe14dbfc Mon Sep 17 00:00:00 2001 From: かめのこにょこにょこ Date: Tue, 2 Apr 2024 07:37:20 +0900 Subject: Add an Asyncify option to propagate the addList (#5935) The new asyncify flag --pass-arg=asyncify-propagate-addlist changes the behavior of --pass-arg=asyncify-addlist : with it, callers of functions in the asyncify-addlist will be also instrumented. --- test/unit/test_asyncify.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/unit/test_asyncify.py') diff --git a/test/unit/test_asyncify.py b/test/unit/test_asyncify.py index c9e0364be..7425173e2 100644 --- a/test/unit/test_asyncify.py +++ b/test/unit/test_asyncify.py @@ -75,6 +75,15 @@ class AsyncifyTest(utils.BinaryenTestCase): test('remove') test('add') + def test_asyncify_addlist_and_removelist(self): + args = shared.WASM_OPT + [self.input_path('asyncify-pure.wat'), + '--asyncify', + '--pass-arg=asyncify-addlist@main', + '--pass-arg=asyncify-removelist@main'] + proc = shared.run_process(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, check=False) + self.assertNotEqual(proc.returncode, 0, 'must error on using both lists at once') + self.assertIn('main is found in the add-list and in the remove-list', proc.stdout) + def test_asyncify_imports(self): def test(args): return shared.run_process(shared.WASM_OPT + [self.input_path('asyncify-sleep.wat'), '--asyncify', '--print'] + args, stdout=subprocess.PIPE).stdout -- cgit v1.2.3