| Index: testing/libfuzzer/tests/BUILD.gn
|
| diff --git a/testing/libfuzzer/tests/BUILD.gn b/testing/libfuzzer/tests/BUILD.gn
|
| index 755aa46903f1176452b8fae0b2dfd3d104bf9f17..d0b1c4c2ea5c4bf3afc355f2d8b49e2f4c579905 100644
|
| --- a/testing/libfuzzer/tests/BUILD.gn
|
| +++ b/testing/libfuzzer/tests/BUILD.gn
|
| @@ -37,7 +37,10 @@ fuzzer_test("test_config_only") {
|
| sources = [
|
| "../fuzzers/empty_fuzzer.cc",
|
| ]
|
| - libfuzzer_options = "fuzzer_config_only_test.options"
|
| + libfuzzer_options = [
|
| + "some_test_option=test_value",
|
| + "max_len=1024",
|
| + ]
|
| }
|
|
|
| fuzzer_test("test_config_and_dict") {
|
| @@ -45,7 +48,11 @@ fuzzer_test("test_config_and_dict") {
|
| "../fuzzers/empty_fuzzer.cc",
|
| ]
|
| dict = "test.dict"
|
| - libfuzzer_options = "fuzzer_config_and_dict_test.options"
|
| + libfuzzer_options = [
|
| + "max_len=random(1337, 31337)",
|
| + "timeout = 666",
|
| + "use_traces=1",
|
| + ]
|
| }
|
|
|
| fuzzer_test("test_dict_from_subdir") {
|
|
|