aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PathOpsIssue3651.cpp
diff options
context:
space:
mode:
authorGravatar caryclark <caryclark@google.com>2016-10-24 05:10:14 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-10-24 05:10:14 -0700
commit1326068147ee60de138061a3fc1157fcfd5d017b (patch)
tree050c8bfb9325c5b48782d09fb1246338e2343063 /tests/PathOpsIssue3651.cpp
parent826167111f80a4251266812cf720ad712bd29446 (diff)
formalize host debugging
Pathops writes files, anticipating upcoming crashes, and verifies the results against regions. Formalize these debugging methods so that they are more easily triggered by hosts outside of skia unit tests. TBR=reed@google.com GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2441763003 Review-Url: https://codereview.chromium.org/2441763003
Diffstat (limited to 'tests/PathOpsIssue3651.cpp')
-rw-r--r--tests/PathOpsIssue3651.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/PathOpsIssue3651.cpp b/tests/PathOpsIssue3651.cpp
index 574bec09c3..bd4ed2d9ab 100644
--- a/tests/PathOpsIssue3651.cpp
+++ b/tests/PathOpsIssue3651.cpp
@@ -473,7 +473,8 @@ static void issue3651_1a(skiatest::Reporter* reporter, const char* filename) {
SkPath path = path1_a();
SkPath pathB = path2_a();
// DEBUG_UNDER_DEVELOPMENT issue3651_1a disable expectation check for now
- testPathOpCheck(reporter, path, pathB, SkPathOp::kUnion_SkPathOp, filename, !FLAGS_runFail);
+ testPathOpCheck(reporter, path, pathB, SkPathOp::kUnion_SkPathOp, filename,
+ !SkOpGlobalState::DebugRunFail());
}
static SkPath path3() {
@@ -1204,7 +1205,8 @@ static void issue3651_1(skiatest::Reporter* reporter, const char* filename) {
SkPath path = path1();
SkPath pathB = path2();
// DEBUG_UNDER_DEVELOPMENT issue3651_1 disable expectation check for now
- testPathOpCheck(reporter, path, pathB, SkPathOp::kUnion_SkPathOp, filename, !FLAGS_runFail);
+ testPathOpCheck(reporter, path, pathB, SkPathOp::kUnion_SkPathOp, filename,
+ !SkOpGlobalState::DebugRunFail());
}
static void issue3651_2(skiatest::Reporter* reporter, const char* filename) {