Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Unified Diff: tests/Test.h

Issue 148173010: Revert of Add --skip_cpu and --skip_gpu options to tests (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/skia_test.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/Test.h
diff --git a/tests/Test.h b/tests/Test.h
index 0a9c306b15963c4d1c611cbd13243f469c0c4edc..2dc7c66f7c2e2833eb2639b26989a73f06be93e0 100644
--- a/tests/Test.h
+++ b/tests/Test.h
@@ -64,7 +64,7 @@
static SkString GetResourcePath();
- virtual bool isGPUTest() const { return false; }
+ virtual bool isThreadsafe() const { return true; }
protected:
virtual void onGetName(SkString*) = 0;
@@ -82,7 +82,7 @@
GpuTest() : Test() {}
static GrContextFactory* GetGrContextFactory();
static void DestroyContexts();
- virtual bool isGPUTest() const { return true; }
+ virtual bool isThreadsafe() const { return false; }
private:
};
« no previous file with comments | « no previous file | tests/skia_test.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698