skia2/tests/PathOpsDebug.h
Cary Clark da6289c5f3 mark tests flaky for pathkit
retain flaky state to avoid manual edits

R=kjlubick@google.com

Bug: skia:
Change-Id: I2f30a90aed46c52a0b30af1ccb7d6235b6db6945
Reviewed-on: https://skia-review.googlesource.com/149800
Commit-Queue: Cary Clark <caryclark@skia.org>
Reviewed-by: Kevin Lubick <kjlubick@google.com>
2018-08-27 20:35:15 +00:00

24 lines
438 B
C++

/*
* Copyright 2018 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef PathOpsDebug_DEFINED
#define PathOpsDebug_DEFINED
#include <stdio.h>
class PathOpsDebug {
public:
static bool gJson;
static bool gMarkJsonFlaky;
static bool gOutFirst;
static bool gCheckForDuplicateNames;
static bool gOutputSVG;
static FILE* gOut;
};
#endif