[test] Drop slow intl/regress-12059 test
In this particular case, a comment in the code provides sufficient protection against regressions. No-Try: true Fixed: v8:12087 Change-Id: If9cad800bcc822b7b5ab91669ccda8b4314009f7 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3098185 Auto-Submit: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Commit-Queue: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#76320}
This commit is contained in:
parent
bf52459def
commit
78e3e7ae80
@ -177,6 +177,8 @@ int32_t weekdayFromEDaysOfWeek(icu::Calendar::EDaysOfWeek eDaysOfWeek) {
|
||||
|
||||
} // namespace
|
||||
|
||||
// Implemented as iteration instead of recursion to avoid stack overflow for
|
||||
// very long input strings.
|
||||
bool JSLocale::Is38AlphaNumList(const std::string& in) {
|
||||
std::string value = in;
|
||||
while (true) {
|
||||
|
@ -31,11 +31,6 @@
|
||||
'overrides/caching': [PASS, FAIL],
|
||||
}], # ALWAYS
|
||||
|
||||
['asan == True or msan == True or tsan == True', {
|
||||
# Take too long to run
|
||||
'regress-12059': [SKIP],
|
||||
}],
|
||||
|
||||
['gc_stress', {
|
||||
# Push limit of stack, too flaky with machine with more memory.
|
||||
'regress-1130489': [SKIP],
|
||||
|
@ -1,18 +0,0 @@
|
||||
// Copyright 2021 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.
|
||||
|
||||
assertThrows(
|
||||
() => new Intl.DateTimeFormat('en', {calendar: 'abc-'.repeat(100000)}),
|
||||
RangeError,
|
||||
"Invalid calendar : " + ('abc-'.repeat(100000)));
|
||||
|
||||
assertThrows(
|
||||
() => new Intl.DateTimeFormat('en', {calendar: 'abc_'.repeat(100000)}),
|
||||
RangeError,
|
||||
"Invalid calendar : " + ('abc_'.repeat(100000)));
|
||||
|
||||
assertThrows(
|
||||
() => new Intl.DateTimeFormat('en', {calendar: 'abc_efgh-'.repeat(100000)}),
|
||||
RangeError,
|
||||
"Invalid calendar : " + ('abc_efgh-'.repeat(100000)));
|
Loading…
Reference in New Issue
Block a user