Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: testing/libfuzzer/fuzzer_test.gni

Issue 2685843006: Update fuzzer_test.gni: add seed_corpuses attribute into noop branch. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/fuzzer_test.gni
diff --git a/testing/libfuzzer/fuzzer_test.gni b/testing/libfuzzer/fuzzer_test.gni
index 8f4ef6e296dc72239f421816ac5c54783562a583..014bb8f188cb6af69afcda16034446591340a695 100644
--- a/testing/libfuzzer/fuzzer_test.gni
+++ b/testing/libfuzzer/fuzzer_test.gni
@@ -155,6 +155,9 @@ template("fuzzer_test") {
if (defined(invoker.seed_corpus)) {
assert(invoker.seed_corpus == [] || invoker.seed_corpus != [])
}
+ if (defined(invoker.seed_corpuses)) {
+ assert(invoker.seed_corpuses == [] || invoker.seed_corpuses != [])
+ }
assert(!defined(invoker.check_includes) || invoker.check_includes != [])
assert(!defined(invoker.include_dirs) || invoker.include_dirs != [])
assert(!defined(invoker.defines) || invoker.defines != [])
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698