diff options
author | Frank Emrich <git@emrich.io> | 2023-10-05 17:18:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 16:18:03 +0000 |
commit | 5597ad587857f5f20b23fbd45a94abd98deaf25c (patch) | |
tree | d9229aec42410e09043715e0d83903f391b172e9 /test/unit/test_features.py | |
parent | db68bae222b835f8190013dca45854c7cc07dadf (diff) | |
download | binaryen-5597ad587857f5f20b23fbd45a94abd98deaf25c.tar.gz binaryen-5597ad587857f5f20b23fbd45a94abd98deaf25c.tar.bz2 binaryen-5597ad587857f5f20b23fbd45a94abd98deaf25c.zip |
[typed-cont] Add feature flag (#5996)
This PR is part of a series that adds basic support for the [typed continuations
proposal](https://github.com/wasmfx/specfx).
This particular PR simply extends `FeatureSet` with a corresponding entry for
this proposal.
Diffstat (limited to 'test/unit/test_features.py')
-rw-r--r-- | test/unit/test_features.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/test_features.py b/test/unit/test_features.py index 75e87b7d5..cbdae1c56 100644 --- a/test/unit/test_features.py +++ b/test/unit/test_features.py @@ -396,4 +396,5 @@ class TargetFeaturesSectionTest(utils.BinaryenTestCase): '--enable-extended-const', '--enable-strings', '--enable-multimemory', + '--enable-typed-continuations', ], p2.stdout.splitlines()) |