Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/wasm-spec-tests/testcfg.py')
-rw-r--r--deps/v8/test/wasm-spec-tests/testcfg.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/deps/v8/test/wasm-spec-tests/testcfg.py b/deps/v8/test/wasm-spec-tests/testcfg.py
index 29c80e8ddcb..4ed010abc73 100644
--- a/deps/v8/test/wasm-spec-tests/testcfg.py
+++ b/deps/v8/test/wasm-spec-tests/testcfg.py
@@ -24,11 +24,6 @@ proposal_flags = [{
'name': 'JS-BigInt-integration',
'flags': ['--experimental-wasm-bigint']
},
- {
- 'name': 'multi-value',
- 'flags': ['--experimental-wasm-mv',
- '--no-experimental-wasm-bulk-memory']
- },
]
class TestLoader(testsuite.JSTestLoader):
@@ -54,7 +49,8 @@ class TestCase(testcase.D8TestCase):
for proposal in proposal_flags:
if os.sep.join(['proposals', proposal['name']]) in self.path:
return proposal['flags']
- return []
+ # TODO(thibaudm): Remove the flag once multi-value is shipped in V8.
+ return ['--experimental-wasm-mv']
def GetSuite(*args, **kwargs):