mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-22716 Test VTimeZone in fuzzer
This commit is contained in:
parent
1c3bf0bf82
commit
4f246ab17f
1 changed files with 6 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
|||
#include "fuzzer_utils.h"
|
||||
#include "unicode/localpointer.h"
|
||||
#include "unicode/timezone.h"
|
||||
#include "unicode/vtzone.h"
|
||||
|
||||
IcuEnvironment* env = new IcuEnvironment();
|
||||
|
||||
|
@ -31,7 +32,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
|||
UBool system;
|
||||
icu::TimeZone::getCanonicalID(fuzzstr, output, system, status);
|
||||
|
||||
|
||||
status = U_ZERO_ERROR;
|
||||
icu::TimeZone::getIanaID(fuzzstr, output, status);
|
||||
|
||||
|
@ -40,5 +40,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
|||
|
||||
status = U_ZERO_ERROR;
|
||||
icu::TimeZone::getRegion(fuzzstr, status);
|
||||
|
||||
tz.adoptInstead(icu::VTimeZone::createVTimeZoneByID(fuzzstr));
|
||||
|
||||
status = U_ZERO_ERROR;
|
||||
tz.adoptInstead(icu::VTimeZone::createVTimeZone(fuzzstr, status));
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue