aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm/DMTestTask.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dm/DMTestTask.cpp')
-rw-r--r--dm/DMTestTask.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/dm/DMTestTask.cpp b/dm/DMTestTask.cpp
index 9e7f41e7d0..ad0c3fb4f3 100644
--- a/dm/DMTestTask.cpp
+++ b/dm/DMTestTask.cpp
@@ -3,17 +3,11 @@
#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.
-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(pathOpsExtended, x, false, "Run extended pathOps tests.");
namespace DM {
bool TestReporter::allowExtendedTest() const { return FLAGS_pathOpsExtended; }
-bool TestReporter::allowThreaded() const { return !FLAGS_pathOpsSingleThread; }
bool TestReporter::verbose() const { return FLAGS_veryVerbose; }
static SkString test_name(const char* name) {