summaryrefslogtreecommitdiff
path: root/deps/v8/test/test262/testcfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/test262/testcfg.py')
-rw-r--r--deps/v8/test/test262/testcfg.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/deps/v8/test/test262/testcfg.py b/deps/v8/test/test262/testcfg.py
index 7c607cec0d..16eda7405f 100644
--- a/deps/v8/test/test262/testcfg.py
+++ b/deps/v8/test/test262/testcfg.py
@@ -48,7 +48,7 @@ FEATURE_FLAGS = {
'host-gc-required': '--expose-gc-as=v8GC',
'IsHTMLDDA': '--allow-natives-syntax',
'import-assertions': '--harmony-import-assertions',
- 'resizable-arraybuffer': '--harmony-rab-gsab',
+ 'resizable-arraybuffer': '--harmony-rab-gsab-transfer',
'Temporal': '--harmony-temporal',
'array-find-from-last': '--harmony-array-find-last',
'ShadowRealm': '--harmony-shadow-realm',
@@ -56,6 +56,9 @@ FEATURE_FLAGS = {
'array-grouping': '--harmony-array-grouping',
'change-array-by-copy': '--harmony-change-array-by-copy',
'symbols-as-weakmap-keys': '--harmony-symbol-as-weakmap-key',
+ 'String.prototype.isWellFormed': '--harmony-string-is-well-formed',
+ 'String.prototype.toWellFormed': '--harmony-string-is-well-formed',
+ 'arraybuffer-transfer': '--harmony-rab-gsab-transfer',
}
SKIPPED_FEATURES = set([])
@@ -205,6 +208,8 @@ class TestCase(testcase.D8TestCase):
if "IsHTMLDDA" in self.test_record.get("features", []) else []) +
([os.path.join(self.suite.root, "harness-adapt-donotevaluate.js")]
if self.fail_phase_only and not self._fail_phase_reverse else []) +
+ ([os.path.join(self.suite.root, "harness-done.js")]
+ if "async" in self.test_record.get("flags", []) else []) +
self._get_includes() +
(["--module"] if "module" in self.test_record else []) +
[self._get_source_path()])