| Index: tests/Test.h
|
| diff --git a/tests/Test.h b/tests/Test.h
|
| index a4baf5b13c6606b48e299da02639223410d41357..dfa12a6dfcd57f4f34169fbe1959f4ac5cd4d01b 100644
|
| --- a/tests/Test.h
|
| +++ b/tests/Test.h
|
| @@ -32,14 +32,16 @@ namespace skiatest {
|
| kLastResult = kFailed
|
| };
|
|
|
| - void bumpTestCount() { sk_atomic_inc(&fTestCount); }
|
| int countTests() const { return fTestCount; }
|
|
|
| void startTest(Test*);
|
| void report(const char testDesc[], Result);
|
| void endTest(Test*);
|
| +
|
| virtual bool allowExtendedTest() const { return false; }
|
| virtual bool allowThreaded() const { return false; }
|
| + virtual void bumpTestCount() { sk_atomic_inc(&fTestCount); }
|
| +
|
| // helpers for tests
|
| void reportFailed(const char desc[]) {
|
| this->report(desc, kFailed);
|
|
|