[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:
Jakob Kummerow 2021-08-16 18:06:40 +02:00 committed by V8 LUCI CQ
parent bf52459def
commit 78e3e7ae80
3 changed files with 2 additions and 23 deletions

View File

@ -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) {

View File

@ -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],

View File

@ -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)));