mirror of https://github.com/google/oss-fuzz.git
libchewing: modify fuzzing parameter (#51)
This commit is contained in:
parent
2fbe9341e2
commit
2f9acf1f4c
|
@ -7,7 +7,7 @@ int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
||||||
fuzz_size = size;
|
fuzz_size = size;
|
||||||
|
|
||||||
const char* stress_argv[] = {
|
const char* stress_argv[] = {
|
||||||
"./chewing_fuzzer", "-loop", "1", "-init", "-extra", NULL,
|
"./chewing_fuzzer", "-loop", "1", "-init", NULL,
|
||||||
};
|
};
|
||||||
stress_main(sizeof(stress_argv) / sizeof(stress_argv[0]) - 1,
|
stress_main(sizeof(stress_argv) / sizeof(stress_argv[0]) - 1,
|
||||||
(char**)stress_argv);
|
(char**)stress_argv);
|
||||||
|
|
Loading…
Reference in New Issue