[v8-test262-automation] Changes from https://github.com/v8/v8.git at sha 1e6d9607 on Tue Sep 25 2018 18:31:03 GMT+0000 (Coordinated Universal Time)

This commit is contained in:
test262-automation 2018-09-25 18:31:32 +00:00
parent 42ed4291f5
commit d1fe93a71a
3 changed files with 8 additions and 5 deletions

View File

@ -10,4 +10,6 @@ assertDoesNotThrow(() => Intl.getCanonicalLocales("en-a-ca-Chinese-u-ca-Chinese"
// Check duplicate subtags (after the first tag) are detected.
assertThrows(() => Intl.getCanonicalLocales("en-foobar-foobar"), RangeError);
assertThrows(() => Intl.getCanonicalLocales("en-u-ca-gregory-ca-chinese"), RangeError);
// Duplicate subtags are valid as per the ECMA262 spec.
assertDoesNotThrow(() => Intl.getCanonicalLocales("en-u-ca-gregory-ca-chinese"));

View File

@ -0,0 +1,5 @@
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
eval("((a=function g() { function g() {}}) => {})();");

View File

@ -586,7 +586,6 @@
'intl402/Locale/constructor-parse-twice': [FAIL],
'intl402/Locale/constructor-tag': [FAIL],
'intl402/Locale/constructor-unicode-ext-invalid': [FAIL],
'intl402/Locale/constructor-unicode-ext-valid': [FAIL],
'intl402/Locale/extensions-grandfathered': [FAIL],
'intl402/Locale/extensions-private': [FAIL],
'intl402/Locale/getters': [FAIL],
@ -608,9 +607,6 @@
'language/expressions/async-generator/generator-created-after-decl-inst': [FAIL],
'language/statements/async-generator/generator-created-after-decl-inst': [FAIL],
# https://bugs.chromium.org/p/chromium/issues/detail?id=865351
'intl402/DateTimeFormat/prototype/formatToParts/main': [FAIL],
# https://bugs.chromium.org/p/v8/issues/detail?id=8099
'intl402/NumberFormat/prototype/format/format-negative-numbers': [FAIL],