blob: 76bb3cc499586f47ae9f650f6019f970af890ac9 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +00007
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +00008#include "OverwriteLine.h"
scroggo@google.com5a6324e2013-04-11 20:11:40 +00009#include "SkCommandLineFlags.h"
reed@android.com5e5adfd2009-03-07 03:39:23 +000010#include "SkGraphics.h"
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +000011#include "SkOSFile.h"
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000012#include "SkTArray.h"
13#include "SkTemplates.h"
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +000014#include "SkThreadPool.h"
15#include "SkTime.h"
reed@android.comed673312009-02-27 16:24:51 +000016#include "Test.h"
17
robertphillips@google.combdb1be52012-09-07 18:24:43 +000018#if SK_SUPPORT_GPU
19#include "GrContext.h"
20#endif
21
reed@android.comed673312009-02-27 16:24:51 +000022using namespace skiatest;
23
caryclark@google.comb631eec2013-05-02 13:14:40 +000024DEFINE_string2(match, m, NULL, "[~][^]substring[$] [...] of test name to run.\n" \
25 "Multiple matches may be separated by spaces.\n" \
26 "~ causes a matching test to always be skipped\n" \
27 "^ requires the start of the test to match\n" \
28 "$ requires the end of the test to match\n" \
29 "^ and $ requires an exact match\n" \
30 "If a test does not match any list entry,\n" \
31 "it is skipped unless some list entry starts with ~");
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +000032DEFINE_string2(tmpDir, t, NULL, "tmp directory for tests to use.");
commit-bot@chromium.orgf9a27592013-10-29 19:50:39 +000033DEFINE_string2(resourcePath, i, "resources", "directory for test resources.");
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +000034DEFINE_bool2(extendedTest, x, false, "run extended tests for pathOps.");
commit-bot@chromium.org6dda8272014-01-23 17:21:19 +000035DEFINE_bool2(leaks, l, false, "show leaked ref cnt'd objects.");
caryclark@google.com8d0a5242013-07-16 16:11:16 +000036DEFINE_bool2(single, z, false, "run tests on a single thread internally.");
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +000037DEFINE_bool2(verbose, v, false, "enable verbose output.");
commit-bot@chromium.org5683acd2014-01-28 20:02:45 +000038DEFINE_bool(cpu, true, "whether or not to run CPU tests.");
39DEFINE_bool(gpu, true, "whether or not to run GPU tests.");
commit-bot@chromium.org44c661f2013-04-22 15:23:14 +000040DEFINE_int32(threads, SkThreadPool::kThreadPerCore,
41 "Run threadsafe tests on a threadpool with this many threads.");
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000042
commit-bot@chromium.org261c6662014-01-02 16:19:53 +000043// need to explicitly declare this, or we get some weird infinite loop llist
44template TestRegistry* TestRegistry::gHead;
45
46class Iter {
47public:
48 Iter() { this->reset(); }
49 void reset() { fReg = TestRegistry::Head(); }
50
51 Test* next(Reporter* r) {
52 if (fReg) {
53 TestRegistry::Factory fact = fReg->factory();
54 fReg = fReg->next();
55 Test* test = fact(NULL);
56 test->setReporter(r);
57 return test;
58 }
59 return NULL;
60 }
61
62private:
63 const TestRegistry* fReg;
64};
65
66class DebugfReporter : public Reporter {
67public:
68 explicit DebugfReporter(int total) : fDone(0), fTotal(total) {}
69
70 virtual bool allowExtendedTest() const SK_OVERRIDE { return FLAGS_extendedTest; }
71 virtual bool allowThreaded() const SK_OVERRIDE { return !FLAGS_single; }
72 virtual bool verbose() const SK_OVERRIDE { return FLAGS_verbose; }
73
74protected:
75 virtual void onReportFailed(const SkString& desc) SK_OVERRIDE {
76 SkDebugf("\nFAILED: %s", desc.c_str());
77 }
78
79 virtual void onEnd(Test* test) SK_OVERRIDE {
80 const int done = 1 + sk_atomic_inc(&fDone);
81
82 if (!test->passed()) {
83 SkDebugf("\n---- %s FAILED", test->getName());
84 }
85
86 SkString prefix(kSkOverwriteLine);
87 SkString time;
88 if (FLAGS_verbose) {
89 prefix.printf("\n");
90 time.printf("%5dms ", test->elapsedMs());
91 }
92 SkDebugf("%s[%3d/%3d] %s%s", prefix.c_str(), done, fTotal, time.c_str(), test->getName());
93 }
94
95private:
96 int32_t fDone; // atomic
97 const int fTotal;
98};
99
scroggo@google.comc76218d2013-06-06 14:59:56 +0000100SkString Test::GetTmpDir() {
101 const char* tmpDir = FLAGS_tmpDir.isEmpty() ? NULL : FLAGS_tmpDir[0];
102 return SkString(tmpDir);
103}
104
105SkString Test::GetResourcePath() {
106 const char* resourcePath = FLAGS_resourcePath.isEmpty() ? NULL : FLAGS_resourcePath[0];
107 return SkString(resourcePath);
108}
109
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000110// Deletes self when run.
111class SkTestRunnable : public SkRunnable {
112public:
113 // Takes ownership of test.
114 SkTestRunnable(Test* test, int32_t* failCount) : fTest(test), fFailCount(failCount) {}
115
116 virtual void run() {
117 fTest->run();
118 if(!fTest->passed()) {
119 sk_atomic_inc(fFailCount);
120 }
121 SkDELETE(this);
122 }
123
124private:
125 SkAutoTDelete<Test> fTest;
126 int32_t* fFailCount;
127};
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +0000128
commit-bot@chromium.org5683acd2014-01-28 20:02:45 +0000129static bool should_run(const char* testName, bool isGPUTest) {
130 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, testName)) {
131 return false;
132 }
133 if (!FLAGS_cpu && !isGPUTest) {
134 return false;
135 }
136 if (!FLAGS_gpu && isGPUTest) {
137 return false;
138 }
139 return true;
140}
141
caryclark@google.com5987f582012-10-02 18:33:14 +0000142int tool_main(int argc, char** argv);
143int tool_main(int argc, char** argv) {
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +0000144 SkCommandLineFlags::SetUsage("");
145 SkCommandLineFlags::Parse(argc, argv);
146
bsalomon@google.com4e230682013-01-15 20:37:04 +0000147#if SK_ENABLE_INST_COUNT
commit-bot@chromium.org6dda8272014-01-23 17:21:19 +0000148 if (FLAGS_leaks) {
149 gPrintInstCount = true;
150 }
reed@google.coma2769752012-07-22 22:33:05 +0000151#endif
caryclark@google.comd54e1e92013-04-10 15:57:31 +0000152
reed@google.coma2769752012-07-22 22:33:05 +0000153 SkGraphics::Init();
bungeman@google.com5af16f82011-09-02 15:06:44 +0000154
reed@google.com91d449e2011-10-26 15:25:18 +0000155 {
156 SkString header("Skia UnitTests:");
reed@google.com9aff1482013-04-11 18:27:52 +0000157 if (!FLAGS_match.isEmpty()) {
caryclark@google.comb631eec2013-05-02 13:14:40 +0000158 header.appendf(" --match");
159 for (int index = 0; index < FLAGS_match.count(); ++index) {
160 header.appendf(" %s", FLAGS_match[index]);
161 }
reed@google.com91d449e2011-10-26 15:25:18 +0000162 }
scroggo@google.comc76218d2013-06-06 14:59:56 +0000163 SkString tmpDir = Test::GetTmpDir();
164 if (!tmpDir.isEmpty()) {
165 header.appendf(" --tmpDir %s", tmpDir.c_str());
djsollen@google.comcb626502013-03-20 13:48:20 +0000166 }
scroggo@google.comc76218d2013-06-06 14:59:56 +0000167 SkString resourcePath = Test::GetResourcePath();
168 if (!resourcePath.isEmpty()) {
169 header.appendf(" --resourcePath %s", resourcePath.c_str());
reed@google.com789c6f22013-02-25 20:24:24 +0000170 }
reed@google.com91d449e2011-10-26 15:25:18 +0000171#ifdef SK_DEBUG
172 header.append(" SK_DEBUG");
173#else
174 header.append(" SK_RELEASE");
175#endif
reed@google.com5696baa2013-08-29 20:20:39 +0000176 header.appendf(" skia_arch_width=%d", (int)sizeof(void*) * 8);
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000177 SkDebugf(header.c_str());
reed@google.com91d449e2011-10-26 15:25:18 +0000178 }
179
reed@android.com80e39a72009-04-02 16:59:40 +0000180
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000181 // Count tests first.
182 int total = 0;
183 int toRun = 0;
184 Test* test;
sglez@google.com586db932013-07-24 17:24:23 +0000185
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000186 Iter iter;
187 while ((test = iter.next(NULL/*reporter not needed*/)) != NULL) {
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000188 SkAutoTDelete<Test> owned(test);
commit-bot@chromium.org5683acd2014-01-28 20:02:45 +0000189 if (should_run(test->getName(), test->isGPUTest())) {
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000190 toRun++;
191 }
192 total++;
193 }
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000194
195 // Now run them.
196 iter.reset();
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000197 int32_t failCount = 0;
bungeman@google.com5af16f82011-09-02 15:06:44 +0000198 int skipCount = 0;
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000199
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000200 SkThreadPool threadpool(FLAGS_threads);
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000201 SkTArray<Test*> unsafeTests; // Always passes ownership to an SkTestRunnable
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000202
203 DebugfReporter reporter(toRun);
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000204 for (int i = 0; i < total; i++) {
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000205 SkAutoTDelete<Test> test(iter.next(&reporter));
commit-bot@chromium.org5683acd2014-01-28 20:02:45 +0000206 if (!should_run(test->getName(), test->isGPUTest())) {
bungeman@google.com5af16f82011-09-02 15:06:44 +0000207 ++skipCount;
commit-bot@chromium.org5683acd2014-01-28 20:02:45 +0000208 } else if (!test->isGPUTest()) {
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000209 unsafeTests.push_back() = test.detach();
bungeman@google.com5af16f82011-09-02 15:06:44 +0000210 } else {
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000211 threadpool.add(SkNEW_ARGS(SkTestRunnable, (test.detach(), &failCount)));
bungeman@google.com5af16f82011-09-02 15:06:44 +0000212 }
reed@android.comed673312009-02-27 16:24:51 +0000213 }
reed@android.com57b799e2009-04-01 20:26:42 +0000214
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000215 // Run the tests that aren't threadsafe.
216 for (int i = 0; i < unsafeTests.count(); i++) {
217 SkNEW_ARGS(SkTestRunnable, (unsafeTests[i], &failCount))->run();
218 }
219
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000220 // Block until threaded tests finish.
221 threadpool.wait();
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000222
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000223 if (FLAGS_verbose) {
224 SkDebugf("\nFinished %d tests, %d failures, %d skipped. (%d internal tests)",
225 toRun, failCount, skipCount, reporter.countTests());
caryclark@google.comd54e1e92013-04-10 15:57:31 +0000226 }
reed@google.coma2769752012-07-22 22:33:05 +0000227 SkGraphics::Term();
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000228 GpuTest::DestroyContexts();
reed@google.coma2769752012-07-22 22:33:05 +0000229
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000230 SkDebugf("\n");
bungeman@google.com5af16f82011-09-02 15:06:44 +0000231 return (failCount == 0) ? 0 : 1;
reed@android.comed673312009-02-27 16:24:51 +0000232}
caryclark@google.com5987f582012-10-02 18:33:14 +0000233
borenet@google.com7158e6a2012-11-01 17:43:44 +0000234#if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL)
caryclark@google.com5987f582012-10-02 18:33:14 +0000235int main(int argc, char * const argv[]) {
236 return tool_main(argc, (char**) argv);
237}
238#endif