aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm/DMTestTask.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2014-08-13 10:30:57 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-08-13 10:30:57 -0700
commit59598b0a9b29302fb9c38d445695b9b9fde8bfee (patch)
tree88621b8b068da4275b77413711beec8e1ccbe890 /dm/DMTestTask.cpp
parentfb261109ec2c33e9236667faf09c13574146e627 (diff)
DM: Replace --pathOpsVerbose with --veryVerbose
R=caryclark@google.com, mtklein@google.com Author: halcanary@google.com Review URL: https://codereview.chromium.org/468963002
Diffstat (limited to 'dm/DMTestTask.cpp')
-rw-r--r--dm/DMTestTask.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/dm/DMTestTask.cpp b/dm/DMTestTask.cpp
index f99abd0053..9e7f41e7d0 100644
--- a/dm/DMTestTask.cpp
+++ b/dm/DMTestTask.cpp
@@ -1,6 +1,7 @@
#include "DMTestTask.h"
#include "DMUtil.h"
#include "SkCommandLineFlags.h"
+#include "SkCommonFlags.h"
// When PathOps threaded tests get going, they're briefly a big consumer of lots of RAM.
// We disable the internal threading there by default on 32-bit builds.
@@ -8,13 +9,12 @@ static const bool is32Bit = sizeof(void*) == 4;
DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
DEFINE_bool2(pathOpsSingleThread, z, is32Bit, "Disallow pathOps tests from using threads.");
-DEFINE_bool2(pathOpsVerbose, V, false, "Tell pathOps tests to be verbose.");
namespace DM {
bool TestReporter::allowExtendedTest() const { return FLAGS_pathOpsExtended; }
bool TestReporter::allowThreaded() const { return !FLAGS_pathOpsSingleThread; }
-bool TestReporter::verbose() const { return FLAGS_pathOpsVerbose; }
+bool TestReporter::verbose() const { return FLAGS_veryVerbose; }
static SkString test_name(const char* name) {
SkString result("test ");