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

Unified Diff: dm/DM.cpp

Issue 805643004: Add temporary blacklist debugging. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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: dm/DM.cpp
diff --git a/dm/DM.cpp b/dm/DM.cpp
index dad1f8b33fd9af1a0436586eaee35c06e3c6c863..246fcb1c49f3b330a953eab8283f49b28bf27353 100644
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -417,6 +417,11 @@ int dm_main() {
SkAutoGraphics ag;
SkTaskGroup::Enabler enabled(FLAGS_threads);
+ SkDebugf("Blacklist debugging. %d total\n", FLAGS_blacklist.count());
+ for (int i = 0; i < FLAGS_blacklist.count(); i++) {
+ SkDebugf("%d: '%s'\n", i, FLAGS_blacklist[i]);
+ }
+
gather_srcs();
gather_sinks();
gather_tests();
« 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