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

Unified Diff: fuzz/fuzz.cpp

Issue 1646603002: Make fuzz output the words success for a 'clean exit' (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Fix syntax error Created 4 years, 11 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: fuzz/fuzz.cpp
diff --git a/fuzz/fuzz.cpp b/fuzz/fuzz.cpp
index d879f298b26c28dc5f167d50054b3903cd7228f8..042b3ca9a40b269d82fff58e09fd23017c150497 100644
--- a/fuzz/fuzz.cpp
+++ b/fuzz/fuzz.cpp
@@ -66,6 +66,7 @@ int fuzz_api(SkData* bytes) {
SkDebugf("Fuzzing %s...\n", fuzzable.name);
Fuzz fuzz(bytes);
fuzzable.fn(&fuzz);
+ SkDebugf("Success!");
mtklein 2016/01/27 19:34:44 Add \n?
return 0;
}
}
@@ -153,7 +154,7 @@ int fuzz_skp(SkData* bytes) {
}
SkCanvas canvas(bitmap);
canvas.drawPicture(pic);
- SkDebugf("Decoded and rendered an SkPicture!\n");
+ SkDebugf("Success! Decoded and rendered an SkPicture!\n");
dump_png(bitmap);
return 0;
}
« 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