From bcbc1788b478b1e54079318ad073e8490aa66fae Mon Sep 17 00:00:00 2001 From: tfarina Date: Wed, 18 Jun 2014 14:32:48 -0700 Subject: Refactor how we handle resources path in Tests. This idea emerged while doing https://codereview.chromium.org/321723002/ (commit 880914c35c8f7fc2e9c57134134c883baf66e538). BUG=None TEST=make tests && out/Debug/tests R=mtklein@google.com Author: tfarina@chromium.org Review URL: https://codereview.chromium.org/346453002 --- tests/Test.cpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'tests/Test.cpp') diff --git a/tests/Test.cpp b/tests/Test.cpp index b904d5a76d..20afd45561 100644 --- a/tests/Test.cpp +++ b/tests/Test.cpp @@ -41,8 +41,6 @@ void Reporter::endTest(Test* test) { /////////////////////////////////////////////////////////////////////////////// -const char* Test::gResourcePath; - Test::Test() : fReporter(NULL), fPassed(true) {} Test::~Test() { @@ -122,11 +120,3 @@ SkString Test::GetTmpDir() { const char* tmpDir = FLAGS_tmpDir.isEmpty() ? NULL : FLAGS_tmpDir[0]; return SkString(tmpDir); } - -void Test::SetResourcePath(const char* resourcePath) { - gResourcePath = resourcePath; -} - -SkString Test::GetResourcePath() { - return SkString(gResourcePath); -} -- cgit v1.2.3