aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm/DM.cpp
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-01-15 16:21:24 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-01-15 16:21:24 -0800
commitf77156e1925cd5d5504070fe5533a4c456732c1b (patch)
treec41a1995fadddcc5e797c48ae81ff8f66dc2577e /dm/DM.cpp
parent9dc0910c2cf4cc41a9a7eaa6bcee914844155205 (diff)
Add temporary blacklist debugging.
Not sure why blacklists don't seem to work on bots. They look right. NOTREECHECKS=true BUG=skia: Review URL: https://codereview.chromium.org/805643004
Diffstat (limited to 'dm/DM.cpp')
-rw-r--r--dm/DM.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/dm/DM.cpp b/dm/DM.cpp
index dad1f8b33f..246fcb1c49 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();