mirror of https://github.com/google/oss-fuzz.git
15 lines
334 B
Java
15 lines
334 B
Java
import com.code_intelligence.jazzer.api.FuzzedDataProvider;
|
|
|
|
import org.joda.time.*;
|
|
|
|
public class TimeFuzzer {
|
|
public static void fuzzerTestOneInput(FuzzedDataProvider data) {
|
|
try {
|
|
DateTimeZone.forID(data.consumeRemainingAsString());
|
|
} catch (IllegalArgumentException e) {}
|
|
|
|
return;
|
|
}
|
|
}
|
|
|