2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2009-02-27 16:24:51 +00:00
|
|
|
#ifndef skiatest_Test_DEFINED
|
|
|
|
#define skiatest_Test_DEFINED
|
|
|
|
|
|
|
|
#include "SkRefCnt.h"
|
|
|
|
#include "SkString.h"
|
|
|
|
#include "SkTRegistry.h"
|
2013-04-11 12:33:23 +00:00
|
|
|
#include "SkThread.h"
|
2013-04-22 16:43:07 +00:00
|
|
|
#include "SkTypes.h"
|
2009-02-27 16:24:51 +00:00
|
|
|
|
2013-02-04 16:13:32 +00:00
|
|
|
class GrContextFactory;
|
2011-08-16 15:45:58 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
namespace skiatest {
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
class Test;
|
|
|
|
|
When running DM, write test failures to json.
Add skiatest::Failure to keep track of data about a test failure.
Reporter::reportFailed and ::onReportFailed now take Failure as a
parameter. This allows the implementation to treat the failure as it
wishes. Provide a helper to format the failure the same as prior to
the change.
Update the macros for calling reportFailed (REPORTER_ASSERT etc) to
create a Failure object.
Convert a direct call to reportFailed to the macro ERRORF.
Write Failures to Json.
Sample output when running dm on the dummy test crrev.com/705723004:
{
"test_results" : {
"failures" : [
{
"condition" : "0 > 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 10,
"message" : ""
},
{
"condition" : "false",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 4,
"message" : ""
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 5,
"message" : "I can too count!"
},
{
"condition" : "",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 6,
"message" : "seven is 7"
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 14,
"message" : "I can too count!"
}
]
}
}
Report all of the failures from one test.
Previously, if one test had multiple failures, only one was reportered.
e.g:
Failures:
test Dummy: ../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
Now, we get all the messages:
Failures:
test Dummy: ../../tests/DummyTest.cpp:4 false
../../tests/DummyTest.cpp:5 I can too count!: 1 == 3
../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
(Note that we still state "3 failures" because 3 DM::Tasks failed.)
BUG=skia:3082
BUG=skia:2454
Review URL: https://codereview.chromium.org/694703005
2014-11-07 14:07:32 +00:00
|
|
|
/**
|
|
|
|
* Information about a single failure from a Test.
|
|
|
|
*
|
|
|
|
* Not intended to be created/modified directly. To create one, use one of
|
|
|
|
*
|
|
|
|
* REPORTER_ASSERT
|
|
|
|
* REPORTER_ASSERT_MESSAGE
|
|
|
|
* ERRORF
|
|
|
|
*
|
|
|
|
* described in more detail further down in this file.
|
|
|
|
*/
|
|
|
|
struct Failure {
|
|
|
|
const char* fileName;
|
|
|
|
int lineNo;
|
|
|
|
const char* condition;
|
|
|
|
SkString message;
|
|
|
|
|
|
|
|
// Helper to combine the failure info into one string.
|
|
|
|
void getFailureString(SkString* result) const {
|
|
|
|
if (!result) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
result->printf("%s:%d\t", fileName, lineNo);
|
|
|
|
if (!message.isEmpty()) {
|
|
|
|
result->append(message);
|
|
|
|
if (strlen(condition) > 0) {
|
|
|
|
result->append(": ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result->append(condition);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
class Reporter : public SkRefCnt {
|
|
|
|
public:
|
2012-08-16 14:58:06 +00:00
|
|
|
SK_DECLARE_INST_COUNT(Reporter)
|
2009-02-27 16:24:51 +00:00
|
|
|
Reporter();
|
|
|
|
|
|
|
|
int countTests() const { return fTestCount; }
|
|
|
|
|
|
|
|
void startTest(Test*);
|
When running DM, write test failures to json.
Add skiatest::Failure to keep track of data about a test failure.
Reporter::reportFailed and ::onReportFailed now take Failure as a
parameter. This allows the implementation to treat the failure as it
wishes. Provide a helper to format the failure the same as prior to
the change.
Update the macros for calling reportFailed (REPORTER_ASSERT etc) to
create a Failure object.
Convert a direct call to reportFailed to the macro ERRORF.
Write Failures to Json.
Sample output when running dm on the dummy test crrev.com/705723004:
{
"test_results" : {
"failures" : [
{
"condition" : "0 > 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 10,
"message" : ""
},
{
"condition" : "false",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 4,
"message" : ""
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 5,
"message" : "I can too count!"
},
{
"condition" : "",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 6,
"message" : "seven is 7"
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 14,
"message" : "I can too count!"
}
]
}
}
Report all of the failures from one test.
Previously, if one test had multiple failures, only one was reportered.
e.g:
Failures:
test Dummy: ../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
Now, we get all the messages:
Failures:
test Dummy: ../../tests/DummyTest.cpp:4 false
../../tests/DummyTest.cpp:5 I can too count!: 1 == 3
../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
(Note that we still state "3 failures" because 3 DM::Tasks failed.)
BUG=skia:3082
BUG=skia:2454
Review URL: https://codereview.chromium.org/694703005
2014-11-07 14:07:32 +00:00
|
|
|
void reportFailed(const Failure&);
|
2009-02-27 16:24:51 +00:00
|
|
|
void endTest(Test*);
|
2013-04-23 11:16:32 +00:00
|
|
|
|
2013-04-10 15:57:31 +00:00
|
|
|
virtual bool allowExtendedTest() const { return false; }
|
2013-07-08 17:17:02 +00:00
|
|
|
virtual bool verbose() const { return false; }
|
2013-04-23 11:16:32 +00:00
|
|
|
virtual void bumpTestCount() { sk_atomic_inc(&fTestCount); }
|
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
protected:
|
|
|
|
virtual void onStart(Test*) {}
|
When running DM, write test failures to json.
Add skiatest::Failure to keep track of data about a test failure.
Reporter::reportFailed and ::onReportFailed now take Failure as a
parameter. This allows the implementation to treat the failure as it
wishes. Provide a helper to format the failure the same as prior to
the change.
Update the macros for calling reportFailed (REPORTER_ASSERT etc) to
create a Failure object.
Convert a direct call to reportFailed to the macro ERRORF.
Write Failures to Json.
Sample output when running dm on the dummy test crrev.com/705723004:
{
"test_results" : {
"failures" : [
{
"condition" : "0 > 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 10,
"message" : ""
},
{
"condition" : "false",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 4,
"message" : ""
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 5,
"message" : "I can too count!"
},
{
"condition" : "",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 6,
"message" : "seven is 7"
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 14,
"message" : "I can too count!"
}
]
}
}
Report all of the failures from one test.
Previously, if one test had multiple failures, only one was reportered.
e.g:
Failures:
test Dummy: ../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
Now, we get all the messages:
Failures:
test Dummy: ../../tests/DummyTest.cpp:4 false
../../tests/DummyTest.cpp:5 I can too count!: 1 == 3
../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
(Note that we still state "3 failures" because 3 DM::Tasks failed.)
BUG=skia:3082
BUG=skia:2454
Review URL: https://codereview.chromium.org/694703005
2014-11-07 14:07:32 +00:00
|
|
|
virtual void onReportFailed(const Failure&) {}
|
2009-02-27 16:24:51 +00:00
|
|
|
virtual void onEnd(Test*) {}
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
private:
|
2013-04-19 13:24:28 +00:00
|
|
|
int32_t fTestCount;
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
typedef SkRefCnt INHERITED;
|
|
|
|
};
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
class Test {
|
2009-04-02 16:59:40 +00:00
|
|
|
public:
|
2009-02-27 16:24:51 +00:00
|
|
|
Test();
|
|
|
|
virtual ~Test();
|
|
|
|
|
|
|
|
Reporter* getReporter() const { return fReporter; }
|
|
|
|
void setReporter(Reporter*);
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
const char* getName();
|
2013-04-19 13:24:28 +00:00
|
|
|
void run();
|
|
|
|
bool passed() const { return fPassed; }
|
2013-04-22 16:43:07 +00:00
|
|
|
SkMSec elapsedMs() const { return fElapsed; }
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2013-06-06 14:59:56 +00:00
|
|
|
static SkString GetTmpDir();
|
2013-03-20 13:48:20 +00:00
|
|
|
|
2014-01-30 15:30:50 +00:00
|
|
|
virtual bool isGPUTest() const { return false; }
|
2014-02-26 16:31:22 +00:00
|
|
|
virtual void setGrContextFactory(GrContextFactory* factory) {}
|
2013-04-19 13:24:28 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
protected:
|
|
|
|
virtual void onGetName(SkString*) = 0;
|
|
|
|
virtual void onRun(Reporter*) = 0;
|
2009-04-02 16:59:40 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
private:
|
|
|
|
Reporter* fReporter;
|
|
|
|
SkString fName;
|
2013-04-19 13:24:28 +00:00
|
|
|
bool fPassed;
|
2013-04-22 16:43:07 +00:00
|
|
|
SkMSec fElapsed;
|
2009-02-27 16:24:51 +00:00
|
|
|
};
|
|
|
|
|
2011-08-16 15:45:58 +00:00
|
|
|
class GpuTest : public Test{
|
|
|
|
public:
|
2014-02-26 16:31:22 +00:00
|
|
|
GpuTest() : Test(), fGrContextFactory(NULL) {}
|
|
|
|
|
2014-01-30 15:30:50 +00:00
|
|
|
virtual bool isGPUTest() const { return true; }
|
2014-02-26 16:31:22 +00:00
|
|
|
virtual void setGrContextFactory(GrContextFactory* factory) {
|
|
|
|
fGrContextFactory = factory;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
GrContextFactory* fGrContextFactory; // Unowned.
|
2011-08-16 15:45:58 +00:00
|
|
|
};
|
|
|
|
|
2013-09-04 17:20:18 +00:00
|
|
|
typedef SkTRegistry<Test*(*)(void*)> TestRegistry;
|
2014-01-14 21:04:37 +00:00
|
|
|
} // namespace skiatest
|
|
|
|
|
|
|
|
/*
|
|
|
|
Use the following macros to make use of the skiatest classes, e.g.
|
|
|
|
|
|
|
|
#include "Test.h"
|
|
|
|
|
|
|
|
DEF_TEST(TestName, reporter) {
|
|
|
|
...
|
|
|
|
REPORTER_ASSERT(reporter, x == 15);
|
|
|
|
...
|
|
|
|
REPORTER_ASSERT_MESSAGE(reporter, x == 15, "x should be 15");
|
|
|
|
...
|
|
|
|
if (x != 15) {
|
|
|
|
ERRORF(reporter, "x should be 15, but is %d", x);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
...
|
|
|
|
}
|
|
|
|
*/
|
2009-02-27 16:24:51 +00:00
|
|
|
|
When running DM, write test failures to json.
Add skiatest::Failure to keep track of data about a test failure.
Reporter::reportFailed and ::onReportFailed now take Failure as a
parameter. This allows the implementation to treat the failure as it
wishes. Provide a helper to format the failure the same as prior to
the change.
Update the macros for calling reportFailed (REPORTER_ASSERT etc) to
create a Failure object.
Convert a direct call to reportFailed to the macro ERRORF.
Write Failures to Json.
Sample output when running dm on the dummy test crrev.com/705723004:
{
"test_results" : {
"failures" : [
{
"condition" : "0 > 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 10,
"message" : ""
},
{
"condition" : "false",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 4,
"message" : ""
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 5,
"message" : "I can too count!"
},
{
"condition" : "",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 6,
"message" : "seven is 7"
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 14,
"message" : "I can too count!"
}
]
}
}
Report all of the failures from one test.
Previously, if one test had multiple failures, only one was reportered.
e.g:
Failures:
test Dummy: ../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
Now, we get all the messages:
Failures:
test Dummy: ../../tests/DummyTest.cpp:4 false
../../tests/DummyTest.cpp:5 I can too count!: 1 == 3
../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
(Note that we still state "3 failures" because 3 DM::Tasks failed.)
BUG=skia:3082
BUG=skia:2454
Review URL: https://codereview.chromium.org/694703005
2014-11-07 14:07:32 +00:00
|
|
|
#define REPORTER_ASSERT(r, cond) \
|
|
|
|
do { \
|
|
|
|
if (!(cond)) { \
|
|
|
|
skiatest::Failure failure = { __FILE__, __LINE__, \
|
|
|
|
#cond, SkString() }; \
|
|
|
|
r->reportFailed(failure); \
|
|
|
|
} \
|
2009-02-27 16:24:51 +00:00
|
|
|
} while(0)
|
|
|
|
|
When running DM, write test failures to json.
Add skiatest::Failure to keep track of data about a test failure.
Reporter::reportFailed and ::onReportFailed now take Failure as a
parameter. This allows the implementation to treat the failure as it
wishes. Provide a helper to format the failure the same as prior to
the change.
Update the macros for calling reportFailed (REPORTER_ASSERT etc) to
create a Failure object.
Convert a direct call to reportFailed to the macro ERRORF.
Write Failures to Json.
Sample output when running dm on the dummy test crrev.com/705723004:
{
"test_results" : {
"failures" : [
{
"condition" : "0 > 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 10,
"message" : ""
},
{
"condition" : "false",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 4,
"message" : ""
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 5,
"message" : "I can too count!"
},
{
"condition" : "",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 6,
"message" : "seven is 7"
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 14,
"message" : "I can too count!"
}
]
}
}
Report all of the failures from one test.
Previously, if one test had multiple failures, only one was reportered.
e.g:
Failures:
test Dummy: ../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
Now, we get all the messages:
Failures:
test Dummy: ../../tests/DummyTest.cpp:4 false
../../tests/DummyTest.cpp:5 I can too count!: 1 == 3
../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
(Note that we still state "3 failures" because 3 DM::Tasks failed.)
BUG=skia:3082
BUG=skia:2454
Review URL: https://codereview.chromium.org/694703005
2014-11-07 14:07:32 +00:00
|
|
|
#define REPORTER_ASSERT_MESSAGE(r, cond, message) \
|
|
|
|
do { \
|
|
|
|
if (!(cond)) { \
|
|
|
|
skiatest::Failure failure = { __FILE__, __LINE__, \
|
|
|
|
#cond, SkString(message) }; \
|
|
|
|
r->reportFailed(failure); \
|
|
|
|
} \
|
2012-02-22 21:00:42 +00:00
|
|
|
} while(0)
|
|
|
|
|
When running DM, write test failures to json.
Add skiatest::Failure to keep track of data about a test failure.
Reporter::reportFailed and ::onReportFailed now take Failure as a
parameter. This allows the implementation to treat the failure as it
wishes. Provide a helper to format the failure the same as prior to
the change.
Update the macros for calling reportFailed (REPORTER_ASSERT etc) to
create a Failure object.
Convert a direct call to reportFailed to the macro ERRORF.
Write Failures to Json.
Sample output when running dm on the dummy test crrev.com/705723004:
{
"test_results" : {
"failures" : [
{
"condition" : "0 > 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 10,
"message" : ""
},
{
"condition" : "false",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 4,
"message" : ""
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 5,
"message" : "I can too count!"
},
{
"condition" : "",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 6,
"message" : "seven is 7"
},
{
"condition" : "1 == 3",
"file_name" : "../../tests/DummyTest.cpp",
"line_no" : 14,
"message" : "I can too count!"
}
]
}
}
Report all of the failures from one test.
Previously, if one test had multiple failures, only one was reportered.
e.g:
Failures:
test Dummy: ../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
Now, we get all the messages:
Failures:
test Dummy: ../../tests/DummyTest.cpp:4 false
../../tests/DummyTest.cpp:5 I can too count!: 1 == 3
../../tests/DummyTest.cpp:6 seven is 7
test Dummy2: ../../tests/DummyTest.cpp:10 0 > 3
test Dummy3: ../../tests/DummyTest.cpp:14 I can too count!: 1 == 3
3 failures.
(Note that we still state "3 failures" because 3 DM::Tasks failed.)
BUG=skia:3082
BUG=skia:2454
Review URL: https://codereview.chromium.org/694703005
2014-11-07 14:07:32 +00:00
|
|
|
#define ERRORF(r, ...) \
|
|
|
|
do { \
|
|
|
|
SkString desc; \
|
|
|
|
desc.appendf(__VA_ARGS__) ; \
|
|
|
|
skiatest::Failure failure = { __FILE__, __LINE__, \
|
|
|
|
"", SkString(desc) }; \
|
|
|
|
r->reportFailed(failure); \
|
2014-01-10 14:58:10 +00:00
|
|
|
} while(0)
|
2009-02-27 16:24:51 +00:00
|
|
|
|
2014-06-24 13:50:39 +00:00
|
|
|
#define DEF_TEST(name, reporter) \
|
|
|
|
static void test_##name(skiatest::Reporter*); \
|
|
|
|
namespace skiatest { \
|
|
|
|
class name##Class : public Test { \
|
|
|
|
public: \
|
|
|
|
static Test* Factory(void*) { return SkNEW(name##Class); } \
|
|
|
|
protected: \
|
2015-01-09 18:06:39 +00:00
|
|
|
void onGetName(SkString* name) SK_OVERRIDE { \
|
2014-06-24 13:50:39 +00:00
|
|
|
name->set(#name); \
|
|
|
|
} \
|
2015-01-09 18:06:39 +00:00
|
|
|
void onRun(Reporter* r) SK_OVERRIDE { test_##name(r); } \
|
2014-06-24 13:50:39 +00:00
|
|
|
}; \
|
|
|
|
static TestRegistry gReg_##name##Class(name##Class::Factory); \
|
|
|
|
} \
|
|
|
|
static void test_##name(skiatest::Reporter* reporter)
|
|
|
|
|
|
|
|
#define DEF_GPUTEST(name, reporter, factory) \
|
|
|
|
static void test_##name(skiatest::Reporter*, GrContextFactory*); \
|
|
|
|
namespace skiatest { \
|
|
|
|
class name##Class : public GpuTest { \
|
|
|
|
public: \
|
|
|
|
static Test* Factory(void*) { return SkNEW(name##Class); } \
|
|
|
|
protected: \
|
2015-01-09 18:06:39 +00:00
|
|
|
void onGetName(SkString* name) SK_OVERRIDE { \
|
2014-06-24 13:50:39 +00:00
|
|
|
name->set(#name); \
|
|
|
|
} \
|
2015-01-09 18:06:39 +00:00
|
|
|
void onRun(Reporter* r) SK_OVERRIDE { \
|
2014-06-24 13:50:39 +00:00
|
|
|
test_##name(r, fGrContextFactory); \
|
|
|
|
} \
|
|
|
|
}; \
|
|
|
|
static TestRegistry gReg_##name##Class(name##Class::Factory); \
|
|
|
|
} \
|
|
|
|
static void test_##name(skiatest::Reporter* reporter, GrContextFactory* factory)
|
2014-01-14 21:04:37 +00:00
|
|
|
|
2009-02-27 16:24:51 +00:00
|
|
|
#endif
|