blob: d489972574f4a3e99742e8843ba40c4b267dd3cd [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
scroggo@google.com5a6324e2013-04-11 20:11:40 +00008#include "SkCommandLineFlags.h"
reed@android.com5e5adfd2009-03-07 03:39:23 +00009#include "SkGraphics.h"
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +000010#include "SkOSFile.h"
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000011#include "SkTArray.h"
12#include "SkTemplates.h"
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +000013#include "SkThreadPool.h"
14#include "SkTime.h"
reed@android.comed673312009-02-27 16:24:51 +000015#include "Test.h"
commit-bot@chromium.org261c6662014-01-02 16:19:53 +000016#include "OverwriteLine.h"
reed@android.comed673312009-02-27 16:24:51 +000017
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.org44c661f2013-04-22 15:23:14 +000038DEFINE_int32(threads, SkThreadPool::kThreadPerCore,
39 "Run threadsafe tests on a threadpool with this many threads.");
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000040
commit-bot@chromium.org261c6662014-01-02 16:19:53 +000041// need to explicitly declare this, or we get some weird infinite loop llist
42template TestRegistry* TestRegistry::gHead;
43
44class Iter {
45public:
46 Iter() { this->reset(); }
47 void reset() { fReg = TestRegistry::Head(); }
48
49 Test* next(Reporter* r) {
50 if (fReg) {
51 TestRegistry::Factory fact = fReg->factory();
52 fReg = fReg->next();
53 Test* test = fact(NULL);
54 test->setReporter(r);
55 return test;
56 }
57 return NULL;
58 }
59
60private:
61 const TestRegistry* fReg;
62};
63
64class DebugfReporter : public Reporter {
65public:
66 explicit DebugfReporter(int total) : fDone(0), fTotal(total) {}
67
68 virtual bool allowExtendedTest() const SK_OVERRIDE { return FLAGS_extendedTest; }
69 virtual bool allowThreaded() const SK_OVERRIDE { return !FLAGS_single; }
70 virtual bool verbose() const SK_OVERRIDE { return FLAGS_verbose; }
71
72protected:
73 virtual void onReportFailed(const SkString& desc) SK_OVERRIDE {
74 SkDebugf("\nFAILED: %s", desc.c_str());
75 }
76
77 virtual void onEnd(Test* test) SK_OVERRIDE {
78 const int done = 1 + sk_atomic_inc(&fDone);
79
80 if (!test->passed()) {
81 SkDebugf("\n---- %s FAILED", test->getName());
82 }
83
84 SkString prefix(kSkOverwriteLine);
85 SkString time;
86 if (FLAGS_verbose) {
87 prefix.printf("\n");
88 time.printf("%5dms ", test->elapsedMs());
89 }
90 SkDebugf("%s[%3d/%3d] %s%s", prefix.c_str(), done, fTotal, time.c_str(), test->getName());
91 }
92
93private:
94 int32_t fDone; // atomic
95 const int fTotal;
96};
97
scroggo@google.comc76218d2013-06-06 14:59:56 +000098SkString Test::GetTmpDir() {
99 const char* tmpDir = FLAGS_tmpDir.isEmpty() ? NULL : FLAGS_tmpDir[0];
100 return SkString(tmpDir);
101}
102
103SkString Test::GetResourcePath() {
104 const char* resourcePath = FLAGS_resourcePath.isEmpty() ? NULL : FLAGS_resourcePath[0];
105 return SkString(resourcePath);
106}
107
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000108// Deletes self when run.
109class SkTestRunnable : public SkRunnable {
110public:
111 // Takes ownership of test.
112 SkTestRunnable(Test* test, int32_t* failCount) : fTest(test), fFailCount(failCount) {}
113
114 virtual void run() {
115 fTest->run();
116 if(!fTest->passed()) {
117 sk_atomic_inc(fFailCount);
118 }
119 SkDELETE(this);
120 }
121
122private:
123 SkAutoTDelete<Test> fTest;
124 int32_t* fFailCount;
125};
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +0000126
caryclark@google.com5987f582012-10-02 18:33:14 +0000127int tool_main(int argc, char** argv);
128int tool_main(int argc, char** argv) {
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +0000129 SkCommandLineFlags::SetUsage("");
130 SkCommandLineFlags::Parse(argc, argv);
131
bsalomon@google.com4e230682013-01-15 20:37:04 +0000132#if SK_ENABLE_INST_COUNT
commit-bot@chromium.org6dda8272014-01-23 17:21:19 +0000133 if (FLAGS_leaks) {
134 gPrintInstCount = true;
135 }
reed@google.coma2769752012-07-22 22:33:05 +0000136#endif
caryclark@google.comd54e1e92013-04-10 15:57:31 +0000137
reed@google.coma2769752012-07-22 22:33:05 +0000138 SkGraphics::Init();
bungeman@google.com5af16f82011-09-02 15:06:44 +0000139
reed@google.com91d449e2011-10-26 15:25:18 +0000140 {
141 SkString header("Skia UnitTests:");
reed@google.com9aff1482013-04-11 18:27:52 +0000142 if (!FLAGS_match.isEmpty()) {
caryclark@google.comb631eec2013-05-02 13:14:40 +0000143 header.appendf(" --match");
144 for (int index = 0; index < FLAGS_match.count(); ++index) {
145 header.appendf(" %s", FLAGS_match[index]);
146 }
reed@google.com91d449e2011-10-26 15:25:18 +0000147 }
scroggo@google.comc76218d2013-06-06 14:59:56 +0000148 SkString tmpDir = Test::GetTmpDir();
149 if (!tmpDir.isEmpty()) {
150 header.appendf(" --tmpDir %s", tmpDir.c_str());
djsollen@google.comcb626502013-03-20 13:48:20 +0000151 }
scroggo@google.comc76218d2013-06-06 14:59:56 +0000152 SkString resourcePath = Test::GetResourcePath();
153 if (!resourcePath.isEmpty()) {
154 header.appendf(" --resourcePath %s", resourcePath.c_str());
reed@google.com789c6f22013-02-25 20:24:24 +0000155 }
reed@google.com91d449e2011-10-26 15:25:18 +0000156#ifdef SK_DEBUG
157 header.append(" SK_DEBUG");
158#else
159 header.append(" SK_RELEASE");
160#endif
reed@google.com5696baa2013-08-29 20:20:39 +0000161 header.appendf(" skia_arch_width=%d", (int)sizeof(void*) * 8);
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000162 SkDebugf(header.c_str());
reed@google.com91d449e2011-10-26 15:25:18 +0000163 }
164
reed@android.com80e39a72009-04-02 16:59:40 +0000165
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000166 // Count tests first.
167 int total = 0;
168 int toRun = 0;
169 Test* test;
sglez@google.com586db932013-07-24 17:24:23 +0000170
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000171 Iter iter;
172 while ((test = iter.next(NULL/*reporter not needed*/)) != NULL) {
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000173 SkAutoTDelete<Test> owned(test);
sglez@google.com586db932013-07-24 17:24:23 +0000174
commit-bot@chromium.orga6f37e72013-08-30 15:52:46 +0000175 if(!SkCommandLineFlags::ShouldSkip(FLAGS_match, test->getName())) {
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000176 toRun++;
177 }
178 total++;
179 }
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000180
181 // Now run them.
182 iter.reset();
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000183 int32_t failCount = 0;
bungeman@google.com5af16f82011-09-02 15:06:44 +0000184 int skipCount = 0;
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000185
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000186 SkThreadPool threadpool(FLAGS_threads);
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000187 SkTArray<Test*> unsafeTests; // Always passes ownership to an SkTestRunnable
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000188
189 DebugfReporter reporter(toRun);
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000190 for (int i = 0; i < total; i++) {
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000191 SkAutoTDelete<Test> test(iter.next(&reporter));
commit-bot@chromium.orga6f37e72013-08-30 15:52:46 +0000192 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test->getName())) {
bungeman@google.com5af16f82011-09-02 15:06:44 +0000193 ++skipCount;
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000194 } else if (!test->isThreadsafe()) {
195 unsafeTests.push_back() = test.detach();
bungeman@google.com5af16f82011-09-02 15:06:44 +0000196 } else {
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000197 threadpool.add(SkNEW_ARGS(SkTestRunnable, (test.detach(), &failCount)));
bungeman@google.com5af16f82011-09-02 15:06:44 +0000198 }
reed@android.comed673312009-02-27 16:24:51 +0000199 }
reed@android.com57b799e2009-04-01 20:26:42 +0000200
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000201 // Run the tests that aren't threadsafe.
202 for (int i = 0; i < unsafeTests.count(); i++) {
203 SkNEW_ARGS(SkTestRunnable, (unsafeTests[i], &failCount))->run();
204 }
205
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000206 // Block until threaded tests finish.
207 threadpool.wait();
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000208
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000209 if (FLAGS_verbose) {
210 SkDebugf("\nFinished %d tests, %d failures, %d skipped. (%d internal tests)",
211 toRun, failCount, skipCount, reporter.countTests());
caryclark@google.comd54e1e92013-04-10 15:57:31 +0000212 }
reed@google.coma2769752012-07-22 22:33:05 +0000213 SkGraphics::Term();
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000214 GpuTest::DestroyContexts();
reed@google.coma2769752012-07-22 22:33:05 +0000215
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000216 SkDebugf("\n");
bungeman@google.com5af16f82011-09-02 15:06:44 +0000217 return (failCount == 0) ? 0 : 1;
reed@android.comed673312009-02-27 16:24:51 +0000218}
caryclark@google.com5987f582012-10-02 18:33:14 +0000219
borenet@google.com7158e6a2012-11-01 17:43:44 +0000220#if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL)
caryclark@google.com5987f582012-10-02 18:33:14 +0000221int main(int argc, char * const argv[]) {
222 return tool_main(argc, (char**) argv);
223}
224#endif