ICU-12663 disable TestLongUpper() unless in exhaustive mode, because it takes a long time

X-SVN-Rev: 39301
This commit is contained in:
Markus Scherer 2016-09-20 22:49:50 +00:00
parent 5afeb0ae2f
commit 8b980000b1

View File

@ -692,6 +692,10 @@ StringCaseTest::TestGreekUpper() {
void
StringCaseTest::TestLongUpper() {
if (quick) {
logln("not exhaustive mode: skipping this test");
return;
}
// Ticket #12663, crash with an extremely long string where
// U+0390 maps to 0399 0308 0301 so that the result is three times as long
// and overflows an int32_t.