diff options
author | Alon Zakai <azakai@google.com> | 2021-08-27 16:57:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-27 16:57:51 -0700 |
commit | c0b48a61be60fb153933682e1f4369b8325bcb23 (patch) | |
tree | 66018059078e091737c77a80a524d7045d8bf814 /test/unit/test_asyncify.py | |
parent | babd339e150ba80b0a64d6a627c07d1f557aa342 (diff) | |
download | binaryen-c0b48a61be60fb153933682e1f4369b8325bcb23.tar.gz binaryen-c0b48a61be60fb153933682e1f4369b8325bcb23.tar.bz2 binaryen-c0b48a61be60fb153933682e1f4369b8325bcb23.zip |
Add a test for too many locals in Asyncify (#4110)
Followup to #4108
Diffstat (limited to 'test/unit/test_asyncify.py')
-rw-r--r-- | test/unit/test_asyncify.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/unit/test_asyncify.py b/test/unit/test_asyncify.py index 7510c9492..81763b051 100644 --- a/test/unit/test_asyncify.py +++ b/test/unit/test_asyncify.py @@ -87,3 +87,18 @@ class AsyncifyTest(utils.BinaryenTestCase): self.assertEqual(normal, response) without = test(['--pass-arg=asyncify-imports@without.anything']) self.assertNotEqual(normal, without) + + def test_asyncify_too_many_locals(self): + # With 64K+ locals we cannot run the liveness analysis optimization, but + # should at least not fatally error. + temp = tempfile.NamedTemporaryFile().name + with open(temp, 'w') as f: + f.write('(module\n') + f.write(' (import "env" "foo" (func $import))\n') + f.write(' (func $many-locals\n') + for i in range(65 * 1024): + f.write(f' (local $x{i} i32)\n') + f.write(' (call $import)\n') + f.write(' )\n') + f.write(')\n') + shared.run_process(shared.WASM_OPT + [temp, '--asyncify']) |