blob: 26a7701a8def4c4e11ec81ff628bd858351cbf6a [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.");
caryclark@google.com8d0a5242013-07-16 16:11:16 +000035DEFINE_bool2(single, z, false, "run tests on a single thread internally.");
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +000036DEFINE_bool2(verbose, v, false, "enable verbose output.");
commit-bot@chromium.org44c661f2013-04-22 15:23:14 +000037DEFINE_int32(threads, SkThreadPool::kThreadPerCore,
38 "Run threadsafe tests on a threadpool with this many threads.");
commit-bot@chromium.org197845a2013-04-19 13:24:28 +000039
commit-bot@chromium.org261c6662014-01-02 16:19:53 +000040// need to explicitly declare this, or we get some weird infinite loop llist
41template TestRegistry* TestRegistry::gHead;
42
43class Iter {
44public:
45 Iter() { this->reset(); }
46 void reset() { fReg = TestRegistry::Head(); }
47
48 Test* next(Reporter* r) {
49 if (fReg) {
50 TestRegistry::Factory fact = fReg->factory();
51 fReg = fReg->next();
52 Test* test = fact(NULL);
53 test->setReporter(r);
54 return test;
55 }
56 return NULL;
57 }
58
59private:
60 const TestRegistry* fReg;
61};
62
63class DebugfReporter : public Reporter {
64public:
65 explicit DebugfReporter(int total) : fDone(0), fTotal(total) {}
66
67 virtual bool allowExtendedTest() const SK_OVERRIDE { return FLAGS_extendedTest; }
68 virtual bool allowThreaded() const SK_OVERRIDE { return !FLAGS_single; }
69 virtual bool verbose() const SK_OVERRIDE { return FLAGS_verbose; }
70
71protected:
72 virtual void onReportFailed(const SkString& desc) SK_OVERRIDE {
73 SkDebugf("\nFAILED: %s", desc.c_str());
74 }
75
76 virtual void onEnd(Test* test) SK_OVERRIDE {
77 const int done = 1 + sk_atomic_inc(&fDone);
78
79 if (!test->passed()) {
80 SkDebugf("\n---- %s FAILED", test->getName());
81 }
82
83 SkString prefix(kSkOverwriteLine);
84 SkString time;
85 if (FLAGS_verbose) {
86 prefix.printf("\n");
87 time.printf("%5dms ", test->elapsedMs());
88 }
89 SkDebugf("%s[%3d/%3d] %s%s", prefix.c_str(), done, fTotal, time.c_str(), test->getName());
90 }
91
92private:
93 int32_t fDone; // atomic
94 const int fTotal;
95};
96
scroggo@google.comc76218d2013-06-06 14:59:56 +000097SkString Test::GetTmpDir() {
98 const char* tmpDir = FLAGS_tmpDir.isEmpty() ? NULL : FLAGS_tmpDir[0];
99 return SkString(tmpDir);
100}
101
102SkString Test::GetResourcePath() {
103 const char* resourcePath = FLAGS_resourcePath.isEmpty() ? NULL : FLAGS_resourcePath[0];
104 return SkString(resourcePath);
105}
106
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000107// Deletes self when run.
108class SkTestRunnable : public SkRunnable {
109public:
110 // Takes ownership of test.
111 SkTestRunnable(Test* test, int32_t* failCount) : fTest(test), fFailCount(failCount) {}
112
113 virtual void run() {
114 fTest->run();
115 if(!fTest->passed()) {
116 sk_atomic_inc(fFailCount);
117 }
118 SkDELETE(this);
119 }
120
121private:
122 SkAutoTDelete<Test> fTest;
123 int32_t* fFailCount;
124};
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +0000125
caryclark@google.com5987f582012-10-02 18:33:14 +0000126int tool_main(int argc, char** argv);
127int tool_main(int argc, char** argv) {
commit-bot@chromium.orgba59d642013-04-11 16:54:09 +0000128 SkCommandLineFlags::SetUsage("");
129 SkCommandLineFlags::Parse(argc, argv);
130
bsalomon@google.com4e230682013-01-15 20:37:04 +0000131#if SK_ENABLE_INST_COUNT
reed@google.coma2769752012-07-22 22:33:05 +0000132 gPrintInstCount = true;
133#endif
caryclark@google.comd54e1e92013-04-10 15:57:31 +0000134
reed@google.coma2769752012-07-22 22:33:05 +0000135 SkGraphics::Init();
bungeman@google.com5af16f82011-09-02 15:06:44 +0000136
reed@google.com91d449e2011-10-26 15:25:18 +0000137 {
138 SkString header("Skia UnitTests:");
reed@google.com9aff1482013-04-11 18:27:52 +0000139 if (!FLAGS_match.isEmpty()) {
caryclark@google.comb631eec2013-05-02 13:14:40 +0000140 header.appendf(" --match");
141 for (int index = 0; index < FLAGS_match.count(); ++index) {
142 header.appendf(" %s", FLAGS_match[index]);
143 }
reed@google.com91d449e2011-10-26 15:25:18 +0000144 }
scroggo@google.comc76218d2013-06-06 14:59:56 +0000145 SkString tmpDir = Test::GetTmpDir();
146 if (!tmpDir.isEmpty()) {
147 header.appendf(" --tmpDir %s", tmpDir.c_str());
djsollen@google.comcb626502013-03-20 13:48:20 +0000148 }
scroggo@google.comc76218d2013-06-06 14:59:56 +0000149 SkString resourcePath = Test::GetResourcePath();
150 if (!resourcePath.isEmpty()) {
151 header.appendf(" --resourcePath %s", resourcePath.c_str());
reed@google.com789c6f22013-02-25 20:24:24 +0000152 }
reed@google.com91d449e2011-10-26 15:25:18 +0000153#ifdef SK_DEBUG
154 header.append(" SK_DEBUG");
155#else
156 header.append(" SK_RELEASE");
157#endif
reed@google.com5696baa2013-08-29 20:20:39 +0000158 header.appendf(" skia_arch_width=%d", (int)sizeof(void*) * 8);
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000159 SkDebugf(header.c_str());
reed@google.com91d449e2011-10-26 15:25:18 +0000160 }
161
reed@android.com80e39a72009-04-02 16:59:40 +0000162
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000163 // Count tests first.
164 int total = 0;
165 int toRun = 0;
166 Test* test;
sglez@google.com586db932013-07-24 17:24:23 +0000167
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000168 Iter iter;
169 while ((test = iter.next(NULL/*reporter not needed*/)) != NULL) {
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000170 SkAutoTDelete<Test> owned(test);
sglez@google.com586db932013-07-24 17:24:23 +0000171
commit-bot@chromium.orga6f37e72013-08-30 15:52:46 +0000172 if(!SkCommandLineFlags::ShouldSkip(FLAGS_match, test->getName())) {
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000173 toRun++;
174 }
175 total++;
176 }
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000177
178 // Now run them.
179 iter.reset();
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000180 int32_t failCount = 0;
bungeman@google.com5af16f82011-09-02 15:06:44 +0000181 int skipCount = 0;
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000182
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000183 SkThreadPool threadpool(FLAGS_threads);
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000184 SkTArray<Test*> unsafeTests; // Always passes ownership to an SkTestRunnable
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000185
186 DebugfReporter reporter(toRun);
commit-bot@chromium.org0506b9d2013-04-22 16:43:07 +0000187 for (int i = 0; i < total; i++) {
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000188 SkAutoTDelete<Test> test(iter.next(&reporter));
commit-bot@chromium.orga6f37e72013-08-30 15:52:46 +0000189 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test->getName())) {
bungeman@google.com5af16f82011-09-02 15:06:44 +0000190 ++skipCount;
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000191 } else if (!test->isThreadsafe()) {
192 unsafeTests.push_back() = test.detach();
bungeman@google.com5af16f82011-09-02 15:06:44 +0000193 } else {
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000194 threadpool.add(SkNEW_ARGS(SkTestRunnable, (test.detach(), &failCount)));
bungeman@google.com5af16f82011-09-02 15:06:44 +0000195 }
reed@android.comed673312009-02-27 16:24:51 +0000196 }
reed@android.com57b799e2009-04-01 20:26:42 +0000197
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000198 // Run the tests that aren't threadsafe.
199 for (int i = 0; i < unsafeTests.count(); i++) {
200 SkNEW_ARGS(SkTestRunnable, (unsafeTests[i], &failCount))->run();
201 }
202
commit-bot@chromium.orga7538ba2013-10-10 18:49:04 +0000203 // Block until threaded tests finish.
204 threadpool.wait();
commit-bot@chromium.org197845a2013-04-19 13:24:28 +0000205
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000206 if (FLAGS_verbose) {
207 SkDebugf("\nFinished %d tests, %d failures, %d skipped. (%d internal tests)",
208 toRun, failCount, skipCount, reporter.countTests());
caryclark@google.comd54e1e92013-04-10 15:57:31 +0000209 }
reed@google.coma2769752012-07-22 22:33:05 +0000210 SkGraphics::Term();
bsalomon@google.com67b915d2013-02-04 16:13:32 +0000211 GpuTest::DestroyContexts();
reed@google.coma2769752012-07-22 22:33:05 +0000212
commit-bot@chromium.org261c6662014-01-02 16:19:53 +0000213 SkDebugf("\n");
bungeman@google.com5af16f82011-09-02 15:06:44 +0000214 return (failCount == 0) ? 0 : 1;
reed@android.comed673312009-02-27 16:24:51 +0000215}
caryclark@google.com5987f582012-10-02 18:33:14 +0000216
borenet@google.com7158e6a2012-11-01 17:43:44 +0000217#if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL)
caryclark@google.com5987f582012-10-02 18:33:14 +0000218int main(int argc, char * const argv[]) {
219 return tool_main(argc, (char**) argv);
220}
221#endif