mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22563 Limit the size for calendar fuzzer
Limit to 1000 bytes of valid test data so the fuzzer will not timeout because of running many operations. ICU-22563 fix comment
This commit is contained in:
parent
511e5efe56
commit
102ed8b6bd
1 changed files with 3 additions and 0 deletions
|
@ -52,6 +52,9 @@ const char* GetRandomCalendarType(uint8_t rnd) {
|
|||
|
||||
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
||||
uint16_t rnd;
|
||||
// Set the limit for the test data to 1000 bytes to avoid timeout for a
|
||||
// very long list of operations.
|
||||
if (size > 1000) { size = 1000; }
|
||||
if (size < 2*sizeof(rnd) + 1) return 0;
|
||||
icu::StringPiece fuzzData(reinterpret_cast<const char *>(data), size);
|
||||
// Byte 0 and 1 randomly select a TimeZone
|
||||
|
|
Loading…
Add table
Reference in a new issue