blob: f9e409772123ba90af42db2442fd3b2d77384fb0 [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.org11ea96c2014-01-28 21:15:42 +000037DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver.");
38DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose.");
commit-bot@chromium.org44c661f2013-04-22 15:23:14 +000039DEFINE_int32(threads, SkThreadPool::kThreadPerCore,
40 "Run threadsafe tests on a threadpool with this many threads.");
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000041
commit-bot@chromium.org261c6662014-01-02 16:19:53 +000042// need to explicitly declare this, or we get some weird infinite loop llist
43template TestRegistry* TestRegistry::gHead;
44
45class Iter {
46public:
47 Iter() { this->reset(); }
48 void reset() { fReg = TestRegistry::Head(); }
49
50 Test* next(Reporter* r) {
51 if (fReg) {
52 TestRegistry::Factory fact = fReg->factory();
53 fReg = fReg->next();
54 Test* test = fact(NULL);
55 test->setReporter(r);
56 return test;
57 }
58 return NULL;
59 }
60
61private:
62 const TestRegistry* fReg;
63};
64
65class DebugfReporter : public Reporter {
66public:
67 explicit DebugfReporter(int total) : fDone(0), fTotal(total) {}
68
69 virtual bool allowExtendedTest() const SK_OVERRIDE { return FLAGS_extendedTest; }
70 virtual bool allowThreaded() const SK_OVERRIDE { return !FLAGS_single; }
commit-bot@chromium.org11ea96c2014-01-28 21:15:42 +000071 virtual bool verbose() const SK_OVERRIDE { return FLAGS_veryVerbose; }
commit-bot@chromium.org261c6662014-01-02 16:19:53 +000072
73protected:
74 virtual void onReportFailed(const SkString& desc) SK_OVERRIDE {
75 SkDebugf("\nFAILED: %s", desc.c_str());
76 }
77
78 virtual void onEnd(Test* test) SK_OVERRIDE {
79 const int done = 1 + sk_atomic_inc(&fDone);
80
81 if (!test->passed()) {
82 SkDebugf("\n---- %s FAILED", test->getName());
83 }
84
85 SkString prefix(kSkOverwriteLine);
86 SkString time;
87 if (FLAGS_verbose) {
88 prefix.printf("\n");
89 time.printf("%5dms ", test->elapsedMs());
90 }
91 SkDebugf("%s[%3d/%3d] %s%s", prefix.c_str(), done, fTotal, time.c_str(), test->getName());
92 }
93
94private:
95 int32_t fDone; // atomic
96 const int fTotal;
97};
98
scroggo@google.comc76218d2013-06-06 14:59:56 +000099SkString Test::GetTmpDir() {
100 const char* tmpDir = FLAGS_tmpDir.isEmpty() ? NULL : FLAGS_tmpDir[0];
101 return SkString(tmpDir);
102}
103
104SkString Test::GetResourcePath() {
105 const char* resourcePath = FLAGS_resourcePath.isEmpty() ? NULL : FLAGS_resourcePath[0];
106 return SkString(resourcePath);
107}
108
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000109// Deletes self when run.
110class SkTestRunnable : public SkRunnable {
111public:
112 // Takes ownership of test.
113 SkTestRunnable(Test* test, int32_t* failCount) : fTest(test), fFailCount(failCount) {}
114
115 virtual void run() {
116 fTest->run();
117 if(!fTest->passed()) {
118 sk_atomic_inc(fFailCount);
119 }
120 SkDELETE(this);
121 }
122
123private:
124 SkAutoTDelete<Test> fTest;
125 int32_t* fFailCount;
126};
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +0000127
caryclark@google.com5987f582012-10-02 18:33:14 +0000128int tool_main(int argc, char** argv);
129int tool_main(int argc, char** argv) {
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +0000130 SkCommandLineFlags::SetUsage("");
131 SkCommandLineFlags::Parse(argc, argv);
132
bsalomon@google.com4e230682013-01-15 20:37:04 +0000133#if SK_ENABLE_INST_COUNT
commit-bot@chromium.org6dda8272014-01-23 17:21:19 +0000134 if (FLAGS_leaks) {
135 gPrintInstCount = true;
136 }
reed@google.coma2769752012-07-22 22:33:05 +0000137#endif
caryclark@google.comd54e1e92013-04-10 15:57:31 +0000138
reed@google.coma2769752012-07-22 22:33:05 +0000139 SkGraphics::Init();
bungeman@google.com5af16f82011-09-02 15:06:44 +0000140
reed@google.com91d449e2011-10-26 15:25:18 +0000141 {
142 SkString header("Skia UnitTests:");
reed@google.com9aff1482013-04-11 18:27:52 +0000143 if (!FLAGS_match.isEmpty()) {
caryclark@google.comb631eec2013-05-02 13:14:40 +0000144 header.appendf(" --match");
145 for (int index = 0; index < FLAGS_match.count(); ++index) {
146 header.appendf(" %s", FLAGS_match[index]);
147 }
reed@google.com91d449e2011-10-26 15:25:18 +0000148 }
scroggo@google.comc76218d2013-06-06 14:59:56 +0000149 SkString tmpDir = Test::GetTmpDir();
150 if (!tmpDir.isEmpty()) {
151 header.appendf(" --tmpDir %s", tmpDir.c_str());
djsollen@google.comcb626502013-03-20 13:48:20 +0000152 }
scroggo@google.comc76218d2013-06-06 14:59:56 +0000153 SkString resourcePath = Test::GetResourcePath();
154 if (!resourcePath.isEmpty()) {
155 header.appendf(" --resourcePath %s", resourcePath.c_str());
reed@google.com789c6f22013-02-25 20:24:24 +0000156 }
reed@google.com91d449e2011-10-26 15:25:18 +0000157#ifdef SK_DEBUG
158 header.append(" SK_DEBUG");
159#else
160 header.append(" SK_RELEASE");
161#endif
reed@google.com5696baa2013-08-29 20:20:39 +0000162 header.appendf(" skia_arch_width=%d", (int)sizeof(void*) * 8);
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000163 SkDebugf(header.c_str());
reed@google.com91d449e2011-10-26 15:25:18 +0000164 }
165
reed@android.com80e39a72009-04-02 16:59:40 +0000166
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000167 // Count tests first.
168 int total = 0;
169 int toRun = 0;
170 Test* test;
sglez@google.com586db932013-07-24 17:24:23 +0000171
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000172 Iter iter;
173 while ((test = iter.next(NULL/*reporter not needed*/)) != NULL) {
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000174 SkAutoTDelete<Test> owned(test);
commit-bot@chromium.org04bfdc32014-01-28 20:21:23 +0000175
176 if(!SkCommandLineFlags::ShouldSkip(FLAGS_match, test->getName())) {
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000177 toRun++;
178 }
179 total++;
180 }
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000181
182 // Now run them.
183 iter.reset();
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000184 int32_t failCount = 0;
bungeman@google.com5af16f82011-09-02 15:06:44 +0000185 int skipCount = 0;
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000186
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000187 SkThreadPool threadpool(FLAGS_threads);
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000188 SkTArray<Test*> unsafeTests; // Always passes ownership to an SkTestRunnable
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000189
190 DebugfReporter reporter(toRun);
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000191 for (int i = 0; i < total; i++) {
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000192 SkAutoTDelete<Test> test(iter.next(&reporter));
commit-bot@chromium.org04bfdc32014-01-28 20:21:23 +0000193 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test->getName())) {
bungeman@google.com5af16f82011-09-02 15:06:44 +0000194 ++skipCount;
commit-bot@chromium.org04bfdc32014-01-28 20:21:23 +0000195 } else if (!test->isThreadsafe()) {
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000196 unsafeTests.push_back() = test.detach();
bungeman@google.com5af16f82011-09-02 15:06:44 +0000197 } else {
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000198 threadpool.add(SkNEW_ARGS(SkTestRunnable, (test.detach(), &failCount)));
bungeman@google.com5af16f82011-09-02 15:06:44 +0000199 }
reed@android.comed673312009-02-27 16:24:51 +0000200 }
reed@android.com57b799e2009-04-01 20:26:42 +0000201
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000202 // Run the tests that aren't threadsafe.
203 for (int i = 0; i < unsafeTests.count(); i++) {
204 SkNEW_ARGS(SkTestRunnable, (unsafeTests[i], &failCount))->run();
205 }
206
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000207 // Block until threaded tests finish.
208 threadpool.wait();
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000209
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000210 if (FLAGS_verbose) {
211 SkDebugf("\nFinished %d tests, %d failures, %d skipped. (%d internal tests)",
212 toRun, failCount, skipCount, reporter.countTests());
caryclark@google.comd54e1e92013-04-10 15:57:31 +0000213 }
reed@google.coma2769752012-07-22 22:33:05 +0000214 SkGraphics::Term();
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000215 GpuTest::DestroyContexts();
reed@google.coma2769752012-07-22 22:33:05 +0000216
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000217 SkDebugf("\n");
bungeman@google.com5af16f82011-09-02 15:06:44 +0000218 return (failCount == 0) ? 0 : 1;
reed@android.comed673312009-02-27 16:24:51 +0000219}
caryclark@google.com5987f582012-10-02 18:33:14 +0000220
borenet@google.com7158e6a2012-11-01 17:43:44 +0000221#if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL)
caryclark@google.com5987f582012-10-02 18:33:14 +0000222int main(int argc, char * const argv[]) {
223 return tool_main(argc, (char**) argv);
224}
225#endif