author | Jason Orendorff <jorendorff@mozilla.com> |
Thu, 18 Oct 2018 16:41:01 +0000 | |
changeset 441947 | 25be011e674c5a4cb1acfbfaeb68e757a2979236 |
parent 441946 | 99d43f9d3918d1bddf2be683e9b9d8c9de6d688f |
child 441948 | 4519ce7c5c84341c97375d572f595b2930df389a |
push id | 34880 |
push user | csabou@mozilla.com |
push date | Thu, 18 Oct 2018 21:53:44 +0000 |
treeherder | mozilla-central@7b0a8e47d256 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | khyperia |
bugs | 1499877 |
milestone | 64.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/js/src/tests/test262-update.py +++ b/js/src/tests/test262-update.py @@ -16,32 +16,39 @@ import sys from functools import partial from itertools import chain # Skip all tests which use features not supported in SpiderMonkey. UNSUPPORTED_FEATURES = set([ "tail-call-optimization", "class-fields-public", + "class-static-fields-public", "class-fields-private", + "class-static-fields-private", + "class-methods-private", + "class-static-methods-private", + "dynamic-import", "regexp-dotall", "regexp-lookbehind", "regexp-named-groups", "regexp-unicode-property-escapes", "numeric-separator-literal", "Intl.Locale", "String.prototype.matchAll", "Symbol.matchAll", "global", "export-star-as-namespace-from-module", ]) FEATURE_CHECK_NEEDED = { "Atomics": "!this.hasOwnProperty('Atomics')", "BigInt": "!this.hasOwnProperty('BigInt')", "SharedArrayBuffer": "!this.hasOwnProperty('SharedArrayBuffer')", + "Intl.ListFormat": "!Intl.hasOwnProperty('ListFormat')", + "Intl.Segmenter": "!Intl.hasOwnProperty('Segmenter')", } RELEASE_OR_BETA = set() @contextlib.contextmanager def TemporaryDirectory(): tmpDir = tempfile.mkdtemp() try: