epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | /* |
| 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.org | ba59d64 | 2013-04-11 16:54:09 +0000 | [diff] [blame] | 7 | |
mtklein | 30e6e2a | 2014-06-18 11:44:15 -0700 | [diff] [blame] | 8 | #include "CrashHandler.h" |
tfarina@chromium.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 9 | #include "OverwriteLine.h" |
tfarina | bcbc178 | 2014-06-18 14:32:48 -0700 | [diff] [blame] | 10 | #include "Resources.h" |
herb | 62a69c2 | 2015-09-29 11:47:45 -0700 | [diff] [blame] | 11 | #include "SkAtomics.h" |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 12 | #include "SkCommonFlags.h" |
reed@android.com | 5e5adfd | 2009-03-07 03:39:23 +0000 | [diff] [blame] | 13 | #include "SkGraphics.h" |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 14 | #include "SkOSFile.h" |
reed | 89889b6 | 2014-10-29 12:36:45 -0700 | [diff] [blame] | 15 | #include "SkRunnable.h" |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 16 | #include "SkTArray.h" |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 17 | #include "SkTaskGroup.h" |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 18 | #include "SkTemplates.h" |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 19 | #include "SkTime.h" |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 20 | #include "Test.h" |
| 21 | |
robertphillips@google.com | bdb1be5 | 2012-09-07 18:24:43 +0000 | [diff] [blame] | 22 | #if SK_SUPPORT_GPU |
| 23 | #include "GrContext.h" |
commit-bot@chromium.org | 0dc5bd1 | 2014-02-26 16:31:22 +0000 | [diff] [blame] | 24 | #include "GrContextFactory.h" |
robertphillips@google.com | bdb1be5 | 2012-09-07 18:24:43 +0000 | [diff] [blame] | 25 | #endif |
| 26 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 27 | using namespace skiatest; |
| 28 | |
commit-bot@chromium.org | ba59d64 | 2013-04-11 16:54:09 +0000 | [diff] [blame] | 29 | DEFINE_bool2(extendedTest, x, false, "run extended tests for pathOps."); |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 30 | |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 31 | // need to explicitly declare this, or we get some weird infinite loop llist |
| 32 | template TestRegistry* TestRegistry::gHead; |
| 33 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 34 | // The threads report back to this object when they are done. |
| 35 | class Status { |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 36 | public: |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 37 | explicit Status(int total) |
| 38 | : fDone(0), fTestCount(0), fFailCount(0), fTotal(total) {} |
| 39 | // Threadsafe. |
| 40 | void endTest(const char* testName, |
| 41 | bool success, |
| 42 | SkMSec elapsed, |
| 43 | int testCount) { |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 44 | const int done = 1 + sk_atomic_inc(&fDone); |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 45 | for (int i = 0; i < testCount; ++i) { |
| 46 | sk_atomic_inc(&fTestCount); |
| 47 | } |
| 48 | if (!success) { |
| 49 | SkDebugf("\n---- %s FAILED", testName); |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | SkString prefix(kSkOverwriteLine); |
| 53 | SkString time; |
| 54 | if (FLAGS_verbose) { |
| 55 | prefix.printf("\n"); |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 56 | time.printf("%5dms ", elapsed); |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 57 | } |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 58 | SkDebugf("%s[%3d/%3d] %s%s", prefix.c_str(), done, fTotal, time.c_str(), |
| 59 | testName); |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 60 | } |
| 61 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 62 | void reportFailure() { sk_atomic_inc(&fFailCount); } |
| 63 | |
| 64 | int32_t testCount() { return fTestCount; } |
| 65 | int32_t failCount() { return fFailCount; } |
| 66 | |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 67 | private: |
| 68 | int32_t fDone; // atomic |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 69 | int32_t fTestCount; // atomic |
| 70 | int32_t fFailCount; // atomic |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 71 | const int fTotal; |
| 72 | }; |
| 73 | |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 74 | // Deletes self when run. |
| 75 | class SkTestRunnable : public SkRunnable { |
| 76 | public: |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 77 | SkTestRunnable(const Test& test, |
| 78 | Status* status, |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 79 | GrContextFactory* grContextFactory = nullptr) |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 80 | : fTest(test), fStatus(status), fGrContextFactory(grContextFactory) {} |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 81 | |
| 82 | virtual void run() { |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 83 | struct TestReporter : public skiatest::Reporter { |
| 84 | public: |
| 85 | TestReporter() : fError(false), fTestCount(0) {} |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 86 | void bumpTestCount() override { ++fTestCount; } |
| 87 | bool allowExtendedTest() const override { |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 88 | return FLAGS_extendedTest; |
| 89 | } |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 90 | bool verbose() const override { return FLAGS_veryVerbose; } |
| 91 | void reportFailed(const skiatest::Failure& failure) override { |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 92 | SkDebugf("\nFAILED: %s", failure.toString().c_str()); |
| 93 | fError = true; |
| 94 | } |
| 95 | bool fError; |
| 96 | int fTestCount; |
| 97 | } reporter; |
| 98 | |
| 99 | const SkMSec start = SkTime::GetMSecs(); |
| 100 | fTest.proc(&reporter, fGrContextFactory); |
| 101 | SkMSec elapsed = SkTime::GetMSecs() - start; |
| 102 | if (reporter.fError) { |
| 103 | fStatus->reportFailure(); |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 104 | } |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 105 | fStatus->endTest(fTest.name, !reporter.fError, elapsed, |
| 106 | reporter.fTestCount); |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 107 | delete this; |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | private: |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 111 | Test fTest; |
| 112 | Status* fStatus; |
| 113 | GrContextFactory* fGrContextFactory; |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 114 | }; |
commit-bot@chromium.org | ba59d64 | 2013-04-11 16:54:09 +0000 | [diff] [blame] | 115 | |
commit-bot@chromium.org | 5a47b09 | 2014-01-30 15:30:50 +0000 | [diff] [blame] | 116 | static bool should_run(const char* testName, bool isGPUTest) { |
| 117 | if (SkCommandLineFlags::ShouldSkip(FLAGS_match, testName)) { |
| 118 | return false; |
| 119 | } |
| 120 | if (!FLAGS_cpu && !isGPUTest) { |
| 121 | return false; |
| 122 | } |
| 123 | if (!FLAGS_gpu && isGPUTest) { |
| 124 | return false; |
| 125 | } |
| 126 | return true; |
| 127 | } |
| 128 | |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 129 | int test_main(); |
| 130 | int test_main() { |
mtklein | 30e6e2a | 2014-06-18 11:44:15 -0700 | [diff] [blame] | 131 | SetupCrashHandler(); |
commit-bot@chromium.org | ba59d64 | 2013-04-11 16:54:09 +0000 | [diff] [blame] | 132 | |
tfarina | a71d3af | 2014-11-07 06:12:30 -0800 | [diff] [blame] | 133 | SkAutoGraphics ag; |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 134 | |
reed@google.com | 91d449e | 2011-10-26 15:25:18 +0000 | [diff] [blame] | 135 | { |
| 136 | SkString header("Skia UnitTests:"); |
reed@google.com | 9aff148 | 2013-04-11 18:27:52 +0000 | [diff] [blame] | 137 | if (!FLAGS_match.isEmpty()) { |
caryclark@google.com | b631eec | 2013-05-02 13:14:40 +0000 | [diff] [blame] | 138 | header.appendf(" --match"); |
| 139 | for (int index = 0; index < FLAGS_match.count(); ++index) { |
| 140 | header.appendf(" %s", FLAGS_match[index]); |
| 141 | } |
reed@google.com | 91d449e | 2011-10-26 15:25:18 +0000 | [diff] [blame] | 142 | } |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 143 | SkString tmpDir = skiatest::GetTmpDir(); |
scroggo@google.com | c76218d | 2013-06-06 14:59:56 +0000 | [diff] [blame] | 144 | if (!tmpDir.isEmpty()) { |
| 145 | header.appendf(" --tmpDir %s", tmpDir.c_str()); |
djsollen@google.com | cb62650 | 2013-03-20 13:48:20 +0000 | [diff] [blame] | 146 | } |
tfarina | bcbc178 | 2014-06-18 14:32:48 -0700 | [diff] [blame] | 147 | SkString resourcePath = GetResourcePath(); |
scroggo@google.com | c76218d | 2013-06-06 14:59:56 +0000 | [diff] [blame] | 148 | if (!resourcePath.isEmpty()) { |
| 149 | header.appendf(" --resourcePath %s", resourcePath.c_str()); |
reed@google.com | 789c6f2 | 2013-02-25 20:24:24 +0000 | [diff] [blame] | 150 | } |
reed@google.com | 91d449e | 2011-10-26 15:25:18 +0000 | [diff] [blame] | 151 | #ifdef SK_DEBUG |
| 152 | header.append(" SK_DEBUG"); |
| 153 | #else |
| 154 | header.append(" SK_RELEASE"); |
| 155 | #endif |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 156 | if (FLAGS_veryVerbose) { |
| 157 | header.appendf("\n"); |
| 158 | } |
kkinnunen | 297aaf9 | 2015-02-19 06:32:12 -0800 | [diff] [blame] | 159 | SkDebugf("%s", header.c_str()); |
reed@google.com | 91d449e | 2011-10-26 15:25:18 +0000 | [diff] [blame] | 160 | } |
| 161 | |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 162 | |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 163 | // Count tests first. |
| 164 | int total = 0; |
| 165 | int toRun = 0; |
sglez@google.com | 586db93 | 2013-07-24 17:24:23 +0000 | [diff] [blame] | 166 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 167 | for (const TestRegistry* iter = TestRegistry::Head(); iter; |
| 168 | iter = iter->next()) { |
| 169 | const Test& test = iter->factory(); |
| 170 | if (should_run(test.name, test.needsGpu)) { |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 171 | toRun++; |
| 172 | } |
| 173 | total++; |
| 174 | } |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 175 | |
| 176 | // Now run them. |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 177 | int skipCount = 0; |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 178 | |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 179 | SkTaskGroup::Enabler enabled(FLAGS_threads); |
| 180 | SkTaskGroup cpuTests; |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 181 | SkTArray<const Test*> gpuTests; |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 182 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 183 | Status status(toRun); |
| 184 | for (const TestRegistry* iter = TestRegistry::Head(); iter; |
| 185 | iter = iter->next()) { |
| 186 | const Test& test = iter->factory(); |
| 187 | if (!should_run(test.name, test.needsGpu)) { |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 188 | ++skipCount; |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 189 | } else if (test.needsGpu) { |
| 190 | gpuTests.push_back(&test); |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 191 | } else { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 192 | cpuTests.add(new SkTestRunnable(test, &status)); |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 193 | } |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 194 | } |
reed@android.com | 57b799e | 2009-04-01 20:26:42 +0000 | [diff] [blame] | 195 | |
halcanary | 96fcdcc | 2015-08-27 07:41:13 -0700 | [diff] [blame] | 196 | GrContextFactory* grContextFactoryPtr = nullptr; |
commit-bot@chromium.org | 0dc5bd1 | 2014-02-26 16:31:22 +0000 | [diff] [blame] | 197 | #if SK_SUPPORT_GPU |
| 198 | // Give GPU tests a context factory if that makes sense on this machine. |
| 199 | GrContextFactory grContextFactory; |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 200 | grContextFactoryPtr = &grContextFactory; |
| 201 | |
commit-bot@chromium.org | 0dc5bd1 | 2014-02-26 16:31:22 +0000 | [diff] [blame] | 202 | #endif |
| 203 | |
| 204 | // Run GPU tests on this thread. |
| 205 | for (int i = 0; i < gpuTests.count(); i++) { |
halcanary | 385fe4d | 2015-08-26 13:07:48 -0700 | [diff] [blame] | 206 | (new SkTestRunnable(*gpuTests[i], &status, grContextFactoryPtr))->run(); |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 207 | } |
| 208 | |
commit-bot@chromium.org | a7538ba | 2013-10-10 18:49:04 +0000 | [diff] [blame] | 209 | // Block until threaded tests finish. |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 210 | cpuTests.wait(); |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 211 | |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 212 | if (FLAGS_verbose) { |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 213 | SkDebugf( |
| 214 | "\nFinished %d tests, %d failures, %d skipped. " |
| 215 | "(%d internal tests)", |
| 216 | toRun, status.failCount(), skipCount, status.testCount()); |
caryclark@google.com | d54e1e9 | 2013-04-10 15:57:31 +0000 | [diff] [blame] | 217 | } |
reed@google.com | a276975 | 2012-07-22 22:33:05 +0000 | [diff] [blame] | 218 | |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 219 | SkDebugf("\n"); |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 220 | return (status.failCount() == 0) ? 0 : 1; |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 221 | } |
caryclark@google.com | 5987f58 | 2012-10-02 18:33:14 +0000 | [diff] [blame] | 222 | |
borenet | 4808757 | 2015-04-02 12:16:36 -0700 | [diff] [blame] | 223 | #if !defined(SK_BUILD_FOR_IOS) |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 224 | int main(int argc, char** argv) { |
| 225 | SkCommandLineFlags::Parse(argc, argv); |
| 226 | return test_main(); |
caryclark@google.com | 5987f58 | 2012-10-02 18:33:14 +0000 | [diff] [blame] | 227 | } |
| 228 | #endif |