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" |
Cary Clark | ab87d7a | 2016-10-04 10:01:04 -0400 | [diff] [blame] | 15 | #include "SkPathOpsDebug.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" |
Brian Salomon | dcfca43 | 2017-11-15 15:48:03 -0500 | [diff] [blame] | 25 | #else |
| 26 | struct GrContextOptions {}; |
robertphillips@google.com | bdb1be5 | 2012-09-07 18:24:43 +0000 | [diff] [blame] | 27 | #endif |
| 28 | |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 29 | using namespace skiatest; |
bsalomon | 3724e57 | 2016-03-30 18:56:19 -0700 | [diff] [blame] | 30 | using namespace sk_gpu_test; |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 31 | |
caryclark | 1326068 | 2016-10-24 05:10:14 -0700 | [diff] [blame] | 32 | DEFINE_bool2(dumpOp, d, false, "dump the pathOps to a file to recover mid-crash."); |
commit-bot@chromium.org | ba59d64 | 2013-04-11 16:54:09 +0000 | [diff] [blame] | 33 | DEFINE_bool2(extendedTest, x, false, "run extended tests for pathOps."); |
Cary Clark | 59d5a0e | 2017-01-23 14:38:52 +0000 | [diff] [blame] | 34 | DEFINE_bool2(runFail, f, false, "check for success on tests known to fail."); |
caryclark | 1326068 | 2016-10-24 05:10:14 -0700 | [diff] [blame] | 35 | DEFINE_bool2(verifyOp, y, false, "compare the pathOps result against a region."); |
| 36 | |
Cary Clark | ab87d7a | 2016-10-04 10:01:04 -0400 | [diff] [blame] | 37 | #if DEBUG_COIN |
| 38 | DEFINE_bool2(coinTest, c, false, "detect unused coincidence algorithms."); |
| 39 | #endif |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 40 | |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 41 | // need to explicitly declare this, or we get some weird infinite loop llist |
| 42 | template TestRegistry* TestRegistry::gHead; |
caryclark | 26ad22a | 2015-10-16 09:03:38 -0700 | [diff] [blame] | 43 | void (*gVerboseFinalize)() = nullptr; |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 44 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 45 | // The threads report back to this object when they are done. |
| 46 | class Status { |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 47 | public: |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 48 | explicit Status(int total) |
| 49 | : fDone(0), fTestCount(0), fFailCount(0), fTotal(total) {} |
| 50 | // Threadsafe. |
| 51 | void endTest(const char* testName, |
| 52 | bool success, |
| 53 | SkMSec elapsed, |
| 54 | int testCount) { |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 55 | const int done = 1 + sk_atomic_inc(&fDone); |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 56 | for (int i = 0; i < testCount; ++i) { |
| 57 | sk_atomic_inc(&fTestCount); |
| 58 | } |
| 59 | if (!success) { |
| 60 | SkDebugf("\n---- %s FAILED", testName); |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | SkString prefix(kSkOverwriteLine); |
| 64 | SkString time; |
| 65 | if (FLAGS_verbose) { |
| 66 | prefix.printf("\n"); |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 67 | time.printf("%5dms ", elapsed); |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 68 | } |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 69 | SkDebugf("%s[%3d/%3d] %s%s", prefix.c_str(), done, fTotal, time.c_str(), |
| 70 | testName); |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 71 | } |
| 72 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 73 | void reportFailure() { sk_atomic_inc(&fFailCount); } |
| 74 | |
| 75 | int32_t testCount() { return fTestCount; } |
| 76 | int32_t failCount() { return fFailCount; } |
| 77 | |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 78 | private: |
| 79 | int32_t fDone; // atomic |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 80 | int32_t fTestCount; // atomic |
| 81 | int32_t fFailCount; // atomic |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 82 | const int fTotal; |
| 83 | }; |
| 84 | |
mtklein | 048494c | 2016-02-16 19:06:15 -0800 | [diff] [blame] | 85 | class SkTestRunnable { |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 86 | public: |
Brian Salomon | dcfca43 | 2017-11-15 15:48:03 -0500 | [diff] [blame] | 87 | SkTestRunnable(const Test& test, Status* status) : fTest(test), fStatus(status) {} |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 88 | |
Brian Salomon | dcfca43 | 2017-11-15 15:48:03 -0500 | [diff] [blame] | 89 | void operator()() { |
| 90 | struct TestReporter : public skiatest::Reporter { |
| 91 | public: |
| 92 | TestReporter() : fStats(nullptr), fError(false), fTestCount(0) {} |
| 93 | void bumpTestCount() override { ++fTestCount; } |
| 94 | bool allowExtendedTest() const override { return FLAGS_extendedTest; } |
| 95 | bool verbose() const override { return FLAGS_veryVerbose; } |
| 96 | void reportFailed(const skiatest::Failure& failure) override { |
| 97 | SkDebugf("\nFAILED: %s", failure.toString().c_str()); |
| 98 | fError = true; |
| 99 | } |
| 100 | void* stats() const override { return fStats; } |
| 101 | void* fStats; |
| 102 | bool fError; |
| 103 | int fTestCount; |
| 104 | } reporter; |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 105 | |
Brian Salomon | dcfca43 | 2017-11-15 15:48:03 -0500 | [diff] [blame] | 106 | const Timer timer; |
| 107 | fTest.proc(&reporter, GrContextOptions()); |
| 108 | SkMSec elapsed = timer.elapsedMsInt(); |
| 109 | if (reporter.fError) { |
| 110 | fStatus->reportFailure(); |
| 111 | } |
| 112 | fStatus->endTest(fTest.name, !reporter.fError, elapsed, reporter.fTestCount); |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | private: |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 116 | Test fTest; |
| 117 | Status* fStatus; |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 118 | }; |
commit-bot@chromium.org | ba59d64 | 2013-04-11 16:54:09 +0000 | [diff] [blame] | 119 | |
commit-bot@chromium.org | 5a47b09 | 2014-01-30 15:30:50 +0000 | [diff] [blame] | 120 | static bool should_run(const char* testName, bool isGPUTest) { |
| 121 | if (SkCommandLineFlags::ShouldSkip(FLAGS_match, testName)) { |
| 122 | return false; |
| 123 | } |
| 124 | if (!FLAGS_cpu && !isGPUTest) { |
| 125 | return false; |
| 126 | } |
| 127 | if (!FLAGS_gpu && isGPUTest) { |
| 128 | return false; |
| 129 | } |
| 130 | return true; |
| 131 | } |
| 132 | |
Mike Klein | be28ee2 | 2017-02-06 12:46:20 -0500 | [diff] [blame] | 133 | int main(int argc, char** argv) { |
| 134 | SkCommandLineFlags::Parse(argc, argv); |
Cary Clark | 918fb1f | 2016-11-15 13:22:25 -0500 | [diff] [blame] | 135 | #if DEBUG_DUMP_VERIFY |
caryclark | 1326068 | 2016-10-24 05:10:14 -0700 | [diff] [blame] | 136 | SkPathOpsDebug::gDumpOp = FLAGS_dumpOp; |
| 137 | SkPathOpsDebug::gVerifyOp = FLAGS_verifyOp; |
| 138 | #endif |
Cary Clark | 59d5a0e | 2017-01-23 14:38:52 +0000 | [diff] [blame] | 139 | SkPathOpsDebug::gRunFail = FLAGS_runFail; |
caryclark | 1326068 | 2016-10-24 05:10:14 -0700 | [diff] [blame] | 140 | SkPathOpsDebug::gVeryVerbose = FLAGS_veryVerbose; |
mtklein | 30e6e2a | 2014-06-18 11:44:15 -0700 | [diff] [blame] | 141 | SetupCrashHandler(); |
commit-bot@chromium.org | ba59d64 | 2013-04-11 16:54:09 +0000 | [diff] [blame] | 142 | |
tfarina | a71d3af | 2014-11-07 06:12:30 -0800 | [diff] [blame] | 143 | SkAutoGraphics ag; |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 144 | |
reed@google.com | 91d449e | 2011-10-26 15:25:18 +0000 | [diff] [blame] | 145 | { |
| 146 | SkString header("Skia UnitTests:"); |
reed@google.com | 9aff148 | 2013-04-11 18:27:52 +0000 | [diff] [blame] | 147 | if (!FLAGS_match.isEmpty()) { |
caryclark@google.com | b631eec | 2013-05-02 13:14:40 +0000 | [diff] [blame] | 148 | header.appendf(" --match"); |
| 149 | for (int index = 0; index < FLAGS_match.count(); ++index) { |
| 150 | header.appendf(" %s", FLAGS_match[index]); |
| 151 | } |
reed@google.com | 91d449e | 2011-10-26 15:25:18 +0000 | [diff] [blame] | 152 | } |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 153 | SkString tmpDir = skiatest::GetTmpDir(); |
scroggo@google.com | c76218d | 2013-06-06 14:59:56 +0000 | [diff] [blame] | 154 | if (!tmpDir.isEmpty()) { |
| 155 | header.appendf(" --tmpDir %s", tmpDir.c_str()); |
djsollen@google.com | cb62650 | 2013-03-20 13:48:20 +0000 | [diff] [blame] | 156 | } |
tfarina | bcbc178 | 2014-06-18 14:32:48 -0700 | [diff] [blame] | 157 | SkString resourcePath = GetResourcePath(); |
scroggo@google.com | c76218d | 2013-06-06 14:59:56 +0000 | [diff] [blame] | 158 | if (!resourcePath.isEmpty()) { |
| 159 | header.appendf(" --resourcePath %s", resourcePath.c_str()); |
reed@google.com | 789c6f2 | 2013-02-25 20:24:24 +0000 | [diff] [blame] | 160 | } |
caryclark | 1326068 | 2016-10-24 05:10:14 -0700 | [diff] [blame] | 161 | #if DEBUG_COIN |
| 162 | if (FLAGS_coinTest) { |
| 163 | header.appendf(" -c"); |
| 164 | } |
| 165 | #endif |
| 166 | if (FLAGS_dumpOp) { |
| 167 | header.appendf(" -d"); |
| 168 | } |
Cary Clark | 59d5a0e | 2017-01-23 14:38:52 +0000 | [diff] [blame] | 169 | #ifdef SK_DEBUG |
| 170 | if (FLAGS_runFail) { |
| 171 | header.appendf(" -f"); |
| 172 | } |
| 173 | #endif |
caryclark | 1326068 | 2016-10-24 05:10:14 -0700 | [diff] [blame] | 174 | if (FLAGS_verbose) { |
| 175 | header.appendf(" -v"); |
| 176 | } |
| 177 | if (FLAGS_veryVerbose) { |
| 178 | header.appendf(" -V"); |
| 179 | } |
| 180 | if (FLAGS_extendedTest) { |
| 181 | header.appendf(" -x"); |
| 182 | } |
| 183 | if (FLAGS_verifyOp) { |
| 184 | header.appendf(" -y"); |
| 185 | } |
reed@google.com | 91d449e | 2011-10-26 15:25:18 +0000 | [diff] [blame] | 186 | #ifdef SK_DEBUG |
| 187 | header.append(" SK_DEBUG"); |
| 188 | #else |
| 189 | header.append(" SK_RELEASE"); |
| 190 | #endif |
commit-bot@chromium.org | 4431e77 | 2014-04-14 17:08:59 +0000 | [diff] [blame] | 191 | if (FLAGS_veryVerbose) { |
| 192 | header.appendf("\n"); |
| 193 | } |
kkinnunen | 297aaf9 | 2015-02-19 06:32:12 -0800 | [diff] [blame] | 194 | SkDebugf("%s", header.c_str()); |
reed@google.com | 91d449e | 2011-10-26 15:25:18 +0000 | [diff] [blame] | 195 | } |
| 196 | |
reed@android.com | 80e39a7 | 2009-04-02 16:59:40 +0000 | [diff] [blame] | 197 | |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 198 | // Count tests first. |
| 199 | int total = 0; |
| 200 | int toRun = 0; |
sglez@google.com | 586db93 | 2013-07-24 17:24:23 +0000 | [diff] [blame] | 201 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 202 | for (const TestRegistry* iter = TestRegistry::Head(); iter; |
| 203 | iter = iter->next()) { |
| 204 | const Test& test = iter->factory(); |
| 205 | if (should_run(test.name, test.needsGpu)) { |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 206 | toRun++; |
| 207 | } |
| 208 | total++; |
| 209 | } |
commit-bot@chromium.org | 0506b9d | 2013-04-22 16:43:07 +0000 | [diff] [blame] | 210 | |
| 211 | // Now run them. |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 212 | int skipCount = 0; |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 213 | |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 214 | SkTaskGroup::Enabler enabled(FLAGS_threads); |
| 215 | SkTaskGroup cpuTests; |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 216 | SkTArray<const Test*> gpuTests; |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 217 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 218 | Status status(toRun); |
| 219 | for (const TestRegistry* iter = TestRegistry::Head(); iter; |
| 220 | iter = iter->next()) { |
| 221 | const Test& test = iter->factory(); |
| 222 | if (!should_run(test.name, test.needsGpu)) { |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 223 | ++skipCount; |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 224 | } else if (test.needsGpu) { |
| 225 | gpuTests.push_back(&test); |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 226 | } else { |
mtklein | 048494c | 2016-02-16 19:06:15 -0800 | [diff] [blame] | 227 | cpuTests.add(SkTestRunnable(test, &status)); |
bungeman@google.com | 5af16f8 | 2011-09-02 15:06:44 +0000 | [diff] [blame] | 228 | } |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 229 | } |
reed@android.com | 57b799e | 2009-04-01 20:26:42 +0000 | [diff] [blame] | 230 | |
commit-bot@chromium.org | 0dc5bd1 | 2014-02-26 16:31:22 +0000 | [diff] [blame] | 231 | // Run GPU tests on this thread. |
| 232 | for (int i = 0; i < gpuTests.count(); i++) { |
Brian Salomon | dcfca43 | 2017-11-15 15:48:03 -0500 | [diff] [blame] | 233 | SkTestRunnable(*gpuTests[i], &status)(); |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 234 | } |
| 235 | |
commit-bot@chromium.org | a7538ba | 2013-10-10 18:49:04 +0000 | [diff] [blame] | 236 | // Block until threaded tests finish. |
mtklein | 406654b | 2014-09-03 15:34:37 -0700 | [diff] [blame] | 237 | cpuTests.wait(); |
commit-bot@chromium.org | 197845a | 2013-04-19 13:24:28 +0000 | [diff] [blame] | 238 | |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 239 | if (FLAGS_verbose) { |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 240 | SkDebugf( |
| 241 | "\nFinished %d tests, %d failures, %d skipped. " |
| 242 | "(%d internal tests)", |
| 243 | toRun, status.failCount(), skipCount, status.testCount()); |
caryclark | 26ad22a | 2015-10-16 09:03:38 -0700 | [diff] [blame] | 244 | if (gVerboseFinalize) { |
| 245 | (*gVerboseFinalize)(); |
| 246 | } |
caryclark@google.com | d54e1e9 | 2013-04-10 15:57:31 +0000 | [diff] [blame] | 247 | } |
reed@google.com | a276975 | 2012-07-22 22:33:05 +0000 | [diff] [blame] | 248 | |
commit-bot@chromium.org | 261c666 | 2014-01-02 16:19:53 +0000 | [diff] [blame] | 249 | SkDebugf("\n"); |
Cary Clark | ab87d7a | 2016-10-04 10:01:04 -0400 | [diff] [blame] | 250 | #if DEBUG_COIN |
| 251 | if (FLAGS_coinTest) { |
| 252 | SkPathOpsDebug::DumpCoinDict(); |
| 253 | } |
| 254 | #endif |
| 255 | |
halcanary | 87f3ba4 | 2015-01-20 09:30:20 -0800 | [diff] [blame] | 256 | return (status.failCount() == 0) ? 0 : 1; |
reed@android.com | ed67331 | 2009-02-27 16:24:51 +0000 | [diff] [blame] | 257 | } |