mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22520 Add test case for oss-fuzz issue #65635.
This commit is contained in:
parent
3f054adaf3
commit
ed970751ef
2 changed files with 13 additions and 0 deletions
|
@ -136,6 +136,7 @@ void DateFormatTest::runIndexedTest( int32_t index, UBool exec, const char* &nam
|
|||
TESTCASE_AUTO(TestHourCycle);
|
||||
TESTCASE_AUTO(TestHCInLocale);
|
||||
TESTCASE_AUTO(TestBogusLocale);
|
||||
TESTCASE_AUTO(TestLongLocale);
|
||||
|
||||
TESTCASE_AUTO_END;
|
||||
}
|
||||
|
@ -5885,6 +5886,17 @@ void DateFormatTest::TestBogusLocale() {
|
|||
Locale("notalanguage")));
|
||||
}
|
||||
|
||||
void DateFormatTest::TestLongLocale() {
|
||||
IcuTestErrorCode status(*this, "TestLongLocale");
|
||||
LocalPointer<DateFormat> df;
|
||||
|
||||
// This should not cause a crash
|
||||
std::string s(1023, ' ');
|
||||
s[1] = '-';
|
||||
df.adoptInstead(DateFormat::createDateTimeInstance(DateFormat::kDateTime, DateFormat::kMedium,
|
||||
Locale(s.c_str())));
|
||||
}
|
||||
|
||||
void DateFormatTest::TestHCInLocale() {
|
||||
IcuTestErrorCode status(*this, "TestHCInLocale");
|
||||
LocalPointer<Calendar> midnight(Calendar::createInstance(status));
|
||||
|
|
|
@ -271,6 +271,7 @@ public:
|
|||
void TestHourCycle();
|
||||
void TestHCInLocale();
|
||||
void TestBogusLocale();
|
||||
void TestLongLocale();
|
||||
|
||||
private:
|
||||
UBool showParse(DateFormat &format, const UnicodeString &formattedString);
|
||||
|
|
Loading…
Add table
Reference in a new issue