blob: 33ce0a41bff68288ac16736fce3fa1fc87ac438b [file] [log] [blame]
scroggo478652e2015-03-25 07:11:02 -07001/*
2 * Copyright 2013 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 */
7
jcgregorio3b27ade2014-11-13 08:06:40 -08008#include "CrashHandler.h"
mtklein748ca3b2015-01-15 10:56:12 -08009#include "DMJsonWriter.h"
10#include "DMSrcSink.h"
tomhudsoneebc39a2015-02-23 12:18:05 -080011#include "DMSrcSinkAndroid.h"
mtklein748ca3b2015-01-15 10:56:12 -080012#include "OverwriteLine.h"
13#include "ProcStats.h"
14#include "SkBBHFactory.h"
mtklein62bd1a62015-01-27 14:46:26 -080015#include "SkChecksum.h"
caryclark17f0b6d2014-07-22 10:15:34 -070016#include "SkCommonFlags.h"
caryclark83ca6282015-06-10 09:31:09 -070017#include "SkFontMgr.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000018#include "SkForceLinking.h"
19#include "SkGraphics.h"
mtkleine67164d2015-02-02 13:24:37 -080020#include "SkInstCnt.h"
mtklein748ca3b2015-01-15 10:56:12 -080021#include "SkMD5.h"
mtklein1d0f1642014-09-08 08:05:18 -070022#include "SkOSFile.h"
mtkleina82f5622015-02-20 12:30:19 -080023#include "SkTHash.h"
mtklein406654b2014-09-03 15:34:37 -070024#include "SkTaskGroup.h"
mtkleinde6fc2b2015-03-12 06:28:54 -070025#include "SkThreadUtils.h"
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +000026#include "Test.h"
mtklein748ca3b2015-01-15 10:56:12 -080027#include "Timer.h"
caryclark83ca6282015-06-10 09:31:09 -070028#include "sk_tool_utils.h"
mtklein@google.comd36522d2013-10-16 13:02:15 +000029
djsollen54416de2015-04-03 07:24:48 -070030DEFINE_string(src, "tests gm skp image", "Source types to test.");
mtklein748ca3b2015-01-15 10:56:12 -080031DEFINE_bool(nameByHash, false,
32 "If true, write to FLAGS_writePath[0]/<hash>.png instead of "
djsollen54416de2015-04-03 07:24:48 -070033 "to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
mtklein748ca3b2015-01-15 10:56:12 -080034DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
mtkleind603b222015-02-17 11:13:33 -080035DEFINE_string(matrix, "1 0 0 1",
36 "2x2 scale+skew matrix to apply or upright when using "
37 "'matrix' or 'upright' in config.");
mtklein82d28432015-01-15 12:46:02 -080038DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
mtklein@google.comd36522d2013-10-16 13:02:15 +000039
mtkleina2ef6422015-01-15 13:44:22 -080040DEFINE_string(blacklist, "",
djsollen54416de2015-04-03 07:24:48 -070041 "Space-separated config/src/srcOptions/name quadruples to blacklist. '_' matches anything. E.g. \n"
42 "'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
43 "'--blacklist gpu skp _ _ 8888 gm _ aarects' will also blacklist the aarects GM on 8888.");
mtkleina2ef6422015-01-15 13:44:22 -080044
mtklein62bd1a62015-01-27 14:46:26 -080045DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory.");
46
borenet09ed4802015-04-03 14:15:33 -070047DEFINE_string(uninterestingHashesFile, "",
48 "File containing a list of uninteresting hashes. If a result hashes to something in "
49 "this list, no image is written for that result.");
50
mtklein6393c062015-04-27 08:45:01 -070051DEFINE_int32(shards, 1, "We're splitting source data into this many shards.");
52DEFINE_int32(shard, 0, "Which shard do I run?");
bsalomon821e10e2015-06-04 14:15:33 -070053DEFINE_bool2(pre_log, p, false, "Log before running each test. May be incomprehensible when threading");
mtklein6393c062015-04-27 08:45:01 -070054
mtklein@google.comd36522d2013-10-16 13:02:15 +000055__SK_FORCE_IMAGE_DECODER_LINKING;
mtklein748ca3b2015-01-15 10:56:12 -080056using namespace DM;
mtklein@google.comd36522d2013-10-16 13:02:15 +000057
mtklein748ca3b2015-01-15 10:56:12 -080058/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
59
60SK_DECLARE_STATIC_MUTEX(gFailuresMutex);
61static SkTArray<SkString> gFailures;
62
63static void fail(ImplicitString err) {
64 SkAutoMutexAcquire lock(gFailuresMutex);
65 SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
66 gFailures.push_back(err);
halcanary9e398f72015-01-10 11:18:04 -080067}
68
mtkleinb37cb412015-03-18 05:27:14 -070069static int32_t gPending = 0; // Atomic. Total number of running and queued tasks.
70
71SK_DECLARE_STATIC_MUTEX(gRunningMutex);
72static SkTArray<SkString> gRunning;
mtklein748ca3b2015-01-15 10:56:12 -080073
mtkleinb9eb4ac2015-02-02 18:26:03 -080074static void done(double ms,
djsollen54416de2015-04-03 07:24:48 -070075 ImplicitString config, ImplicitString src, ImplicitString srcOptions,
76 ImplicitString name, ImplicitString note, ImplicitString log) {
77 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
78 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -070079 {
80 SkAutoMutexAcquire lock(gRunningMutex);
81 for (int i = 0; i < gRunning.count(); i++) {
82 if (gRunning[i] == id) {
83 gRunning.removeShuffle(i);
84 break;
85 }
86 }
87 }
88 if (!FLAGS_verbose) {
89 note = "";
90 }
mtkleinb9eb4ac2015-02-02 18:26:03 -080091 if (!log.isEmpty()) {
92 log.prepend("\n");
93 }
mtklein6dee2ad2015-02-05 09:53:44 -080094 auto pending = sk_atomic_dec(&gPending)-1;
reed50bc0512015-05-19 14:13:31 -070095 if (!FLAGS_quiet) {
96 SkDebugf("%s(%4d/%-4dMB %5d) %s\t%s%s%s", FLAGS_verbose ? "\n" : kSkOverwriteLine
97 , sk_tools::getCurrResidentSetSizeMB()
98 , sk_tools::getMaxResidentSetSizeMB()
99 , pending
100 , HumanizeMs(ms).c_str()
101 , id.c_str()
102 , note.c_str()
103 , log.c_str());
104 }
mtkleina17241b2015-01-23 05:48:00 -0800105 // We write our dm.json file every once in a while in case we crash.
106 // Notice this also handles the final dm.json when pending == 0.
107 if (pending % 500 == 0) {
108 JsonWriter::DumpJson();
109 }
mtklein@google.comd36522d2013-10-16 13:02:15 +0000110}
111
djsollen54416de2015-04-03 07:24:48 -0700112static void start(ImplicitString config, ImplicitString src,
113 ImplicitString srcOptions, ImplicitString name) {
114 SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
115 srcOptions.c_str(), name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700116 SkAutoMutexAcquire lock(gRunningMutex);
117 gRunning.push_back(id);
118}
119
mtklein748ca3b2015-01-15 10:56:12 -0800120/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
mtklein114c3cd2015-01-15 10:15:02 -0800121
mtklein62bd1a62015-01-27 14:46:26 -0800122struct Gold : public SkString {
mtkleina82f5622015-02-20 12:30:19 -0800123 Gold() : SkString("") {}
djsollen54416de2015-04-03 07:24:48 -0700124 Gold(ImplicitString sink, ImplicitString src, ImplicitString srcOptions,
125 ImplicitString name, ImplicitString md5)
mtklein62bd1a62015-01-27 14:46:26 -0800126 : SkString("") {
127 this->append(sink);
128 this->append(src);
djsollen54416de2015-04-03 07:24:48 -0700129 this->append(srcOptions);
mtklein62bd1a62015-01-27 14:46:26 -0800130 this->append(name);
131 this->append(md5);
mtklein62bd1a62015-01-27 14:46:26 -0800132 }
mtklein02f46cf2015-03-20 13:48:42 -0700133 static uint32_t Hash(const Gold& g) { return SkGoodHash((const SkString&)g); }
mtklein62bd1a62015-01-27 14:46:26 -0800134};
mtkleina82f5622015-02-20 12:30:19 -0800135static SkTHashSet<Gold, Gold::Hash> gGold;
mtklein62bd1a62015-01-27 14:46:26 -0800136
137static void add_gold(JsonWriter::BitmapResult r) {
djsollen54416de2015-04-03 07:24:48 -0700138 gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
mtklein62bd1a62015-01-27 14:46:26 -0800139}
140
141static void gather_gold() {
142 if (!FLAGS_readPath.isEmpty()) {
143 SkString path(FLAGS_readPath[0]);
144 path.append("/dm.json");
145 if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
146 fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
147 }
148 }
149}
150
151/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
152
borenet09ed4802015-04-03 14:15:33 -0700153static SkTHashSet<SkString> gUninterestingHashes;
154
155static void gather_uninteresting_hashes() {
156 if (!FLAGS_uninterestingHashesFile.isEmpty()) {
157 SkAutoTUnref<SkData> data(SkData::NewFromFileName(FLAGS_uninterestingHashesFile[0]));
158 SkTArray<SkString> hashes;
159 SkStrSplit((const char*)data->data(), "\n", &hashes);
160 for (const SkString& hash : hashes) {
161 gUninterestingHashes.add(hash);
162 }
163 }
164}
165
166/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
167
mtklein748ca3b2015-01-15 10:56:12 -0800168template <typename T>
djsollen54416de2015-04-03 07:24:48 -0700169struct Tagged : public SkAutoTDelete<T> {
170 const char* tag;
171 const char* options;
172};
mtklein748ca3b2015-01-15 10:56:12 -0800173
174static const bool kMemcpyOK = true;
175
176static SkTArray<Tagged<Src>, kMemcpyOK> gSrcs;
177static SkTArray<Tagged<Sink>, kMemcpyOK> gSinks;
178
mtklein6393c062015-04-27 08:45:01 -0700179static bool in_shard() {
180 static int N = 0;
181 return N++ % FLAGS_shards == FLAGS_shard;
182}
183
djsollen54416de2015-04-03 07:24:48 -0700184static void push_src(const char* tag, const char* options, Src* s) {
mtklein748ca3b2015-01-15 10:56:12 -0800185 SkAutoTDelete<Src> src(s);
mtklein6393c062015-04-27 08:45:01 -0700186 if (in_shard() &&
187 FLAGS_src.contains(tag) &&
mtklein748ca3b2015-01-15 10:56:12 -0800188 !SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
189 Tagged<Src>& s = gSrcs.push_back();
190 s.reset(src.detach());
191 s.tag = tag;
djsollen54416de2015-04-03 07:24:48 -0700192 s.options = options;
mtklein114c3cd2015-01-15 10:15:02 -0800193 }
mtklein748ca3b2015-01-15 10:56:12 -0800194}
mtklein114c3cd2015-01-15 10:15:02 -0800195
msarett438b2ad2015-04-09 12:43:10 -0700196static void push_codec_srcs(Path path) {
197 SkAutoTUnref<SkData> encoded(SkData::NewFromFileName(path.c_str()));
198 if (!encoded) {
199 SkDebugf("Couldn't read %s.", path.c_str());
200 return;
201 }
202 SkAutoTDelete<SkCodec> codec(SkCodec::NewFromData(encoded));
203 if (NULL == codec.get()) {
204 SkDebugf("Couldn't create codec for %s.", path.c_str());
205 return;
206 }
207
msarett0a242972015-06-11 14:27:27 -0700208 // Choose scales for scaling tests.
209 // TODO (msarett): Add more scaling tests as we implement more flexible scaling.
210 // TODO (msarett): Implement scaling tests for SkImageDecoder in order to compare with these
211 // tests. SkImageDecoder supports downscales by integer factors.
212 const float scales[] = { 0.125f, 0.25f, 0.5f, 1.0f };
msarett438b2ad2015-04-09 12:43:10 -0700213
msarett0a242972015-06-11 14:27:27 -0700214 for (float scale : scales) {
215 // Build additional test cases for images that decode natively to non-canvas types
216 switch(codec->getInfo().colorType()) {
217 case kGray_8_SkColorType:
218 push_src("image", "codec_kGray8", new CodecSrc(path, CodecSrc::kNormal_Mode,
219 CodecSrc::kGrayscale_Always_DstColorType, scale));
220 push_src("image", "scanline_kGray8", new CodecSrc(path, CodecSrc::kScanline_Mode,
221 CodecSrc::kGrayscale_Always_DstColorType, scale));
222 push_src("image", "scanline_subset_kGray8", new CodecSrc(path,
223 CodecSrc::kScanline_Subset_Mode, CodecSrc::kGrayscale_Always_DstColorType,
224 scale));
225 push_src("image", "stripe_kGray8", new CodecSrc(path, CodecSrc::kStripe_Mode,
226 CodecSrc::kGrayscale_Always_DstColorType, scale));
227 // Intentional fall through
228 // FIXME: Is this a long term solution for testing wbmps decodes to kIndex8?
229 // Further discussion on this topic is at skbug.com/3683
230 case kIndex_8_SkColorType:
231 push_src("image", "codec_kIndex8", new CodecSrc(path, CodecSrc::kNormal_Mode,
232 CodecSrc::kIndex8_Always_DstColorType, scale));
233 push_src("image", "scanline_kIndex8", new CodecSrc(path, CodecSrc::kScanline_Mode,
234 CodecSrc::kIndex8_Always_DstColorType, scale));
235 push_src("image", "scanline_subset_kIndex8", new CodecSrc(path,
236 CodecSrc::kScanline_Subset_Mode, CodecSrc::kIndex8_Always_DstColorType,
237 scale));
238 push_src("image", "stripe_kIndex8", new CodecSrc(path, CodecSrc::kStripe_Mode,
239 CodecSrc::kIndex8_Always_DstColorType, scale));
240 break;
241 default:
242 // Do nothing
243 break;
244 }
245
246 // Decode all images to the canvas color type
247 push_src("image", "codec", new CodecSrc(path, CodecSrc::kNormal_Mode,
248 CodecSrc::kGetFromCanvas_DstColorType, scale));
249 push_src("image", "scanline", new CodecSrc(path, CodecSrc::kScanline_Mode,
250 CodecSrc::kGetFromCanvas_DstColorType, scale));
251 push_src("image", "scanline_subset", new CodecSrc(path, CodecSrc::kScanline_Subset_Mode,
252 CodecSrc::kGetFromCanvas_DstColorType, scale));
253 push_src("image", "stripe", new CodecSrc(path, CodecSrc::kStripe_Mode,
254 CodecSrc::kGetFromCanvas_DstColorType, scale));
255 }
msarett438b2ad2015-04-09 12:43:10 -0700256}
257
scroggo9b77ddd2015-03-19 06:03:39 -0700258static bool codec_supported(const char* ext) {
259 // FIXME: Once other versions of SkCodec are available, we can add them to this
260 // list (and eventually we can remove this check once they are all supported).
msarett8c8f22a2015-04-01 06:58:48 -0700261 static const char* const exts[] = {
msarette16b04a2015-04-15 07:32:19 -0700262 "bmp", "gif", "jpg", "jpeg", "png", "ico", "wbmp",
263 "BMP", "GIF", "JPG", "JPEG", "PNG", "ICO", "WBMP"
msarett8c8f22a2015-04-01 06:58:48 -0700264 };
265
266 for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) {
267 if (0 == strcmp(exts[i], ext)) {
268 return true;
269 }
270 }
271 return false;
scroggo9b77ddd2015-03-19 06:03:39 -0700272}
273
mtklein748ca3b2015-01-15 10:56:12 -0800274static void gather_srcs() {
275 for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) {
djsollen54416de2015-04-03 07:24:48 -0700276 push_src("gm", "", new GMSrc(r->factory()));
mtklein748ca3b2015-01-15 10:56:12 -0800277 }
halcanaryfc37ad12015-01-30 07:31:19 -0800278 for (int i = 0; i < FLAGS_skps.count(); i++) {
279 const char* path = FLAGS_skps[i];
280 if (sk_isdir(path)) {
281 SkOSFile::Iter it(path, "skp");
282 for (SkString file; it.next(&file); ) {
djsollen54416de2015-04-03 07:24:48 -0700283 push_src("skp", "", new SKPSrc(SkOSPath::Join(path, file.c_str())));
halcanaryfc37ad12015-01-30 07:31:19 -0800284 }
285 } else {
djsollen54416de2015-04-03 07:24:48 -0700286 push_src("skp", "", new SKPSrc(path));
mtklein114c3cd2015-01-15 10:15:02 -0800287 }
288 }
halcanary23b03c32015-01-30 09:58:58 -0800289 static const char* const exts[] = {
290 "bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico",
291 "BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO",
292 };
293 for (int i = 0; i < FLAGS_images.count(); i++) {
294 const char* flag = FLAGS_images[i];
295 if (sk_isdir(flag)) {
296 for (size_t j = 0; j < SK_ARRAY_COUNT(exts); j++) {
297 SkOSFile::Iter it(flag, exts[j]);
298 for (SkString file; it.next(&file); ) {
299 SkString path = SkOSPath::Join(flag, file.c_str());
djsollen54416de2015-04-03 07:24:48 -0700300 push_src("image", "decode", new ImageSrc(path)); // Decode entire image
301 push_src("image", "subset", new ImageSrc(path, 2)); // Decode into 2x2 subsets
scroggo9b77ddd2015-03-19 06:03:39 -0700302 if (codec_supported(exts[j])) {
msarett438b2ad2015-04-09 12:43:10 -0700303 push_codec_srcs(path);
scroggo9b77ddd2015-03-19 06:03:39 -0700304 }
halcanary23b03c32015-01-30 09:58:58 -0800305 }
mtklein114c3cd2015-01-15 10:15:02 -0800306 }
halcanary23b03c32015-01-30 09:58:58 -0800307 } else if (sk_exists(flag)) {
308 // assume that FLAGS_images[i] is a valid image if it is a file.
djsollen54416de2015-04-03 07:24:48 -0700309 push_src("image", "decode", new ImageSrc(flag)); // Decode entire image.
310 push_src("image", "subset", new ImageSrc(flag, 2)); // Decode into 2 x 2 subsets
msarett438b2ad2015-04-09 12:43:10 -0700311 push_codec_srcs(flag);
mtklein709d2c32015-01-15 08:30:25 -0800312 }
mtklein709d2c32015-01-15 08:30:25 -0800313 }
314}
315
mtklein748ca3b2015-01-15 10:56:12 -0800316static GrGLStandard get_gpu_api() {
317 if (FLAGS_gpuAPI.contains("gl")) { return kGL_GrGLStandard; }
318 if (FLAGS_gpuAPI.contains("gles")) { return kGLES_GrGLStandard; }
319 return kNone_GrGLStandard;
mtklein709d2c32015-01-15 08:30:25 -0800320}
321
mtklein748ca3b2015-01-15 10:56:12 -0800322static void push_sink(const char* tag, Sink* s) {
323 SkAutoTDelete<Sink> sink(s);
324 if (!FLAGS_config.contains(tag)) {
325 return;
mtklein114c3cd2015-01-15 10:15:02 -0800326 }
mtklein748ca3b2015-01-15 10:56:12 -0800327 // Try a noop Src as a canary. If it fails, skip this sink.
328 struct : public Src {
mtklein36352bf2015-03-25 18:17:31 -0700329 Error draw(SkCanvas*) const override { return ""; }
330 SkISize size() const override { return SkISize::Make(16, 16); }
331 Name name() const override { return "noop"; }
mtklein748ca3b2015-01-15 10:56:12 -0800332 } noop;
mtklein114c3cd2015-01-15 10:15:02 -0800333
mtklein748ca3b2015-01-15 10:56:12 -0800334 SkBitmap bitmap;
335 SkDynamicMemoryWStream stream;
mtkleinb9eb4ac2015-02-02 18:26:03 -0800336 SkString log;
337 Error err = sink->draw(noop, &bitmap, &stream, &log);
mtklein4089ef72015-03-05 08:40:28 -0800338 if (err.isFatal()) {
mtklein05641a52015-04-21 10:49:13 -0700339 SkDebugf("Could not run %s: %s\n", tag, err.c_str());
340 exit(1);
mtklein114c3cd2015-01-15 10:15:02 -0800341 }
342
mtklein748ca3b2015-01-15 10:56:12 -0800343 Tagged<Sink>& ts = gSinks.push_back();
344 ts.reset(sink.detach());
345 ts.tag = tag;
346}
347
348static bool gpu_supported() {
349#if SK_SUPPORT_GPU
350 return FLAGS_gpu;
351#else
352 return false;
353#endif
354}
355
356static Sink* create_sink(const char* tag) {
357#define SINK(t, sink, ...) if (0 == strcmp(t, tag)) { return new sink(__VA_ARGS__); }
358 if (gpu_supported()) {
mtklein82d28432015-01-15 12:46:02 -0800359 typedef GrContextFactory Gr;
mtklein748ca3b2015-01-15 10:56:12 -0800360 const GrGLStandard api = get_gpu_api();
mtklein82d28432015-01-15 12:46:02 -0800361 SINK("gpunull", GPUSink, Gr::kNull_GLContextType, api, 0, false, FLAGS_gpu_threading);
362 SINK("gpudebug", GPUSink, Gr::kDebug_GLContextType, api, 0, false, FLAGS_gpu_threading);
363 SINK("gpu", GPUSink, Gr::kNative_GLContextType, api, 0, false, FLAGS_gpu_threading);
364 SINK("gpudft", GPUSink, Gr::kNative_GLContextType, api, 0, true, FLAGS_gpu_threading);
365 SINK("msaa4", GPUSink, Gr::kNative_GLContextType, api, 4, false, FLAGS_gpu_threading);
366 SINK("msaa16", GPUSink, Gr::kNative_GLContextType, api, 16, false, FLAGS_gpu_threading);
367 SINK("nvprmsaa4", GPUSink, Gr::kNVPR_GLContextType, api, 4, false, FLAGS_gpu_threading);
368 SINK("nvprmsaa16", GPUSink, Gr::kNVPR_GLContextType, api, 16, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800369 #if SK_ANGLE
mtklein82d28432015-01-15 12:46:02 -0800370 SINK("angle", GPUSink, Gr::kANGLE_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800371 #endif
372 #if SK_MESA
mtklein82d28432015-01-15 12:46:02 -0800373 SINK("mesa", GPUSink, Gr::kMESA_GLContextType, api, 0, false, FLAGS_gpu_threading);
mtklein748ca3b2015-01-15 10:56:12 -0800374 #endif
mtklein114c3cd2015-01-15 10:15:02 -0800375 }
mtklein748ca3b2015-01-15 10:56:12 -0800376
tomhudsoneebc39a2015-02-23 12:18:05 -0800377#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
378 SINK("hwui", HWUISink);
379#endif
380
mtklein748ca3b2015-01-15 10:56:12 -0800381 if (FLAGS_cpu) {
382 SINK("565", RasterSink, kRGB_565_SkColorType);
383 SINK("8888", RasterSink, kN32_SkColorType);
mtklein19f30602015-01-20 13:34:39 -0800384 SINK("pdf", PDFSink);
mtklein9c3f17d2015-01-28 11:35:18 -0800385 SINK("skp", SKPSink);
mtklein8a4527e2015-01-31 20:00:58 -0800386 SINK("svg", SVGSink);
387 SINK("null", NullSink);
halcanary47ef4d52015-03-03 09:13:09 -0800388 SINK("xps", XPSSink);
mtklein748ca3b2015-01-15 10:56:12 -0800389 }
390#undef SINK
391 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800392}
393
mtklein748ca3b2015-01-15 10:56:12 -0800394static Sink* create_via(const char* tag, Sink* wrapped) {
395#define VIA(t, via, ...) if (0 == strcmp(t, tag)) { return new via(__VA_ARGS__); }
mtklein6fbf4b32015-05-06 11:35:40 -0700396 VIA("twice", ViaTwice, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800397 VIA("pipe", ViaPipe, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800398 VIA("serialize", ViaSerialization, wrapped);
reed06a22f62015-05-05 08:11:33 -0700399 VIA("deferred", ViaDeferred, wrapped);
mtkleinb7e8d692015-04-07 08:30:32 -0700400 VIA("2ndpic", ViaSecondPicture, wrapped);
mtkleind31c13d2015-05-05 12:59:56 -0700401 VIA("sp", ViaSingletonPictures, wrapped);
mtklein7edca212015-01-21 13:18:51 -0800402 VIA("tiles", ViaTiles, 256, 256, NULL, wrapped);
403 VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800404
mtkleind603b222015-02-17 11:13:33 -0800405 if (FLAGS_matrix.count() == 4) {
mtklein748ca3b2015-01-15 10:56:12 -0800406 SkMatrix m;
mtkleind603b222015-02-17 11:13:33 -0800407 m.reset();
408 m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
409 m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
410 m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
411 m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
412 VIA("matrix", ViaMatrix, m, wrapped);
413 VIA("upright", ViaUpright, m, wrapped);
mtklein748ca3b2015-01-15 10:56:12 -0800414 }
tomhudson64de1e12015-03-05 08:01:07 -0800415
416#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
417 VIA("androidsdk", ViaAndroidSDK, wrapped);
418#endif
419
mtklein748ca3b2015-01-15 10:56:12 -0800420#undef VIA
421 return NULL;
mtklein114c3cd2015-01-15 10:15:02 -0800422}
423
mtklein748ca3b2015-01-15 10:56:12 -0800424static void gather_sinks() {
425 for (int i = 0; i < FLAGS_config.count(); i++) {
426 const char* config = FLAGS_config[i];
427 SkTArray<SkString> parts;
428 SkStrSplit(config, "-", &parts);
429
430 Sink* sink = NULL;
431 for (int i = parts.count(); i-- > 0;) {
432 const char* part = parts[i].c_str();
433 Sink* next = (sink == NULL) ? create_sink(part) : create_via(part, sink);
434 if (next == NULL) {
435 SkDebugf("Skipping %s: Don't understand '%s'.\n", config, part);
436 delete sink;
437 sink = NULL;
438 break;
439 }
440 sink = next;
441 }
442 if (sink) {
443 push_sink(config, sink);
mtklein114c3cd2015-01-15 10:15:02 -0800444 }
445 }
446}
mtklein709d2c32015-01-15 08:30:25 -0800447
mtkleina2ef6422015-01-15 13:44:22 -0800448static bool match(const char* needle, const char* haystack) {
449 return 0 == strcmp("_", needle) || NULL != strstr(haystack, needle);
450}
451
djsollen54416de2015-04-03 07:24:48 -0700452static ImplicitString is_blacklisted(const char* sink, const char* src,
453 const char* srcOptions, const char* name) {
mtklein0d243ff2015-04-03 07:51:00 -0700454 for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
mtkleina2ef6422015-01-15 13:44:22 -0800455 if (match(FLAGS_blacklist[i+0], sink) &&
djsollen54416de2015-04-03 07:24:48 -0700456 match(FLAGS_blacklist[i+1], src) &&
457 match(FLAGS_blacklist[i+2], srcOptions) &&
458 match(FLAGS_blacklist[i+3], name)) {
459 return SkStringPrintf("%s %s %s %s",
460 FLAGS_blacklist[i+0], FLAGS_blacklist[i+1],
461 FLAGS_blacklist[i+2], FLAGS_blacklist[i+3]);
mtkleina2ef6422015-01-15 13:44:22 -0800462 }
463 }
464 return "";
465}
466
mtklein748ca3b2015-01-15 10:56:12 -0800467// The finest-grained unit of work we can run: draw a single Src into a single Sink,
468// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
469struct Task {
470 Task(const Tagged<Src>& src, const Tagged<Sink>& sink) : src(src), sink(sink) {}
471 const Tagged<Src>& src;
472 const Tagged<Sink>& sink;
473
474 static void Run(Task* task) {
mtkleina2ef6422015-01-15 13:44:22 -0800475 SkString name = task->src->name();
mtkleinb37cb412015-03-18 05:27:14 -0700476 SkString note;
djsollen54416de2015-04-03 07:24:48 -0700477 SkString whyBlacklisted = is_blacklisted(task->sink.tag, task->src.tag,
478 task->src.options, name.c_str());
mtkleinb37cb412015-03-18 05:27:14 -0700479 if (!whyBlacklisted.isEmpty()) {
480 note.appendf(" (--blacklist %s)", whyBlacklisted.c_str());
481 }
mtkleinb9eb4ac2015-02-02 18:26:03 -0800482 SkString log;
mtklein748ca3b2015-01-15 10:56:12 -0800483 WallTimer timer;
484 timer.start();
mtkleina2ef6422015-01-15 13:44:22 -0800485 if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800486 SkBitmap bitmap;
487 SkDynamicMemoryWStream stream;
bsalomon821e10e2015-06-04 14:15:33 -0700488 if (FLAGS_pre_log) {
489 SkDebugf("\nRunning %s->%s", name.c_str(), task->sink.tag);
490 }
djsollen54416de2015-04-03 07:24:48 -0700491 start(task->sink.tag, task->src.tag, task->src.options, name.c_str());
mtkleinb9eb4ac2015-02-02 18:26:03 -0800492 Error err = task->sink->draw(*task->src, &bitmap, &stream, &log);
mtklein748ca3b2015-01-15 10:56:12 -0800493 if (!err.isEmpty()) {
mtklein4089ef72015-03-05 08:40:28 -0800494 timer.end();
495 if (err.isFatal()) {
djsollen54416de2015-04-03 07:24:48 -0700496 fail(SkStringPrintf("%s %s %s %s: %s",
mtklein4089ef72015-03-05 08:40:28 -0800497 task->sink.tag,
498 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700499 task->src.options,
mtklein4089ef72015-03-05 08:40:28 -0800500 name.c_str(),
501 err.c_str()));
mtkleinb37cb412015-03-18 05:27:14 -0700502 } else {
503 note.appendf(" (skipped: %s)", err.c_str());
mtklein4089ef72015-03-05 08:40:28 -0800504 }
djsollen54416de2015-04-03 07:24:48 -0700505 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options,
506 name, note, log);
mtklein4089ef72015-03-05 08:40:28 -0800507 return;
mtklein748ca3b2015-01-15 10:56:12 -0800508 }
mtklein62bd1a62015-01-27 14:46:26 -0800509 SkAutoTDelete<SkStreamAsset> data(stream.detachAsStream());
510
511 SkString md5;
512 if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
513 SkMD5 hash;
514 if (data->getLength()) {
515 hash.writeStream(data, data->getLength());
516 data->rewind();
517 } else {
518 hash.write(bitmap.getPixels(), bitmap.getSize());
519 }
520 SkMD5::Digest digest;
521 hash.finish(digest);
522 for (int i = 0; i < 16; i++) {
523 md5.appendf("%02x", digest.data[i]);
524 }
525 }
526
527 if (!FLAGS_readPath.isEmpty() &&
djsollen54416de2015-04-03 07:24:48 -0700528 !gGold.contains(Gold(task->sink.tag, task->src.tag,
529 task->src.options, name, md5))) {
530 fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
mtklein62bd1a62015-01-27 14:46:26 -0800531 md5.c_str(),
532 task->sink.tag,
533 task->src.tag,
djsollen54416de2015-04-03 07:24:48 -0700534 task->src.options,
mtklein62bd1a62015-01-27 14:46:26 -0800535 name.c_str(),
536 FLAGS_readPath[0]));
537 }
538
mtkleinb0531a72015-04-07 13:38:48 -0700539 if (!FLAGS_writePath.isEmpty()) {
mtklein748ca3b2015-01-15 10:56:12 -0800540 const char* ext = task->sink->fileExtension();
mtklein62bd1a62015-01-27 14:46:26 -0800541 if (data->getLength()) {
542 WriteToDisk(*task, md5, ext, data, data->getLength(), NULL);
halcanary022afb82015-01-30 11:00:12 -0800543 SkASSERT(bitmap.drawsNothing());
544 } else if (!bitmap.drawsNothing()) {
mtklein62bd1a62015-01-27 14:46:26 -0800545 WriteToDisk(*task, md5, ext, NULL, 0, &bitmap);
mtklein748ca3b2015-01-15 10:56:12 -0800546 }
547 }
548 }
549 timer.end();
djsollen54416de2015-04-03 07:24:48 -0700550 done(timer.fWall, task->sink.tag, task->src.tag, task->src.options, name, note, log);
mtklein748ca3b2015-01-15 10:56:12 -0800551 }
552
553 static void WriteToDisk(const Task& task,
mtklein62bd1a62015-01-27 14:46:26 -0800554 SkString md5,
555 const char* ext,
mtklein748ca3b2015-01-15 10:56:12 -0800556 SkStream* data, size_t len,
mtklein62bd1a62015-01-27 14:46:26 -0800557 const SkBitmap* bitmap) {
mtklein748ca3b2015-01-15 10:56:12 -0800558 JsonWriter::BitmapResult result;
djsollen54416de2015-04-03 07:24:48 -0700559 result.name = task.src->name();
560 result.config = task.sink.tag;
561 result.sourceType = task.src.tag;
562 result.sourceOptions = task.src.options;
563 result.ext = ext;
564 result.md5 = md5;
mtklein748ca3b2015-01-15 10:56:12 -0800565 JsonWriter::AddBitmapResult(result);
566
mtkleinb0531a72015-04-07 13:38:48 -0700567 // If an MD5 is uninteresting, we want it noted in the JSON file,
568 // but don't want to dump it out as a .png (or whatever ext is).
569 if (gUninterestingHashes.contains(md5)) {
570 return;
571 }
572
mtklein748ca3b2015-01-15 10:56:12 -0800573 const char* dir = FLAGS_writePath[0];
574 if (0 == strcmp(dir, "@")) { // Needed for iOS.
575 dir = FLAGS_resourcePath[0];
576 }
577 sk_mkdir(dir);
578
579 SkString path;
580 if (FLAGS_nameByHash) {
581 path = SkOSPath::Join(dir, result.md5.c_str());
582 path.append(".");
583 path.append(ext);
584 if (sk_exists(path.c_str())) {
585 return; // Content-addressed. If it exists already, we're done.
586 }
587 } else {
588 path = SkOSPath::Join(dir, task.sink.tag);
589 sk_mkdir(path.c_str());
590 path = SkOSPath::Join(path.c_str(), task.src.tag);
591 sk_mkdir(path.c_str());
djsollen54416de2015-04-03 07:24:48 -0700592 if (strcmp(task.src.options, "") != 0) {
593 path = SkOSPath::Join(path.c_str(), task.src.options);
594 sk_mkdir(path.c_str());
595 }
mtklein748ca3b2015-01-15 10:56:12 -0800596 path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
597 path.append(".");
598 path.append(ext);
599 }
600
601 SkFILEWStream file(path.c_str());
602 if (!file.isValid()) {
603 fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
604 return;
605 }
606
mtklein748ca3b2015-01-15 10:56:12 -0800607 if (bitmap) {
608 // We can't encode A8 bitmaps as PNGs. Convert them to 8888 first.
609 SkBitmap converted;
610 if (bitmap->info().colorType() == kAlpha_8_SkColorType) {
611 if (!bitmap->copyTo(&converted, kN32_SkColorType)) {
612 fail("Can't convert A8 to 8888.\n");
613 return;
614 }
615 bitmap = &converted;
616 }
617 if (!SkImageEncoder::EncodeStream(&file, *bitmap, SkImageEncoder::kPNG_Type, 100)) {
618 fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
619 return;
620 }
621 } else {
622 if (!file.writeStream(data, len)) {
623 fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
624 return;
625 }
626 }
627 }
628};
629
630// Run all tasks in the same enclave serially on the same thread.
631// They can't possibly run concurrently with each other.
632static void run_enclave(SkTArray<Task>* tasks) {
633 for (int i = 0; i < tasks->count(); i++) {
634 Task::Run(tasks->begin() + i);
635 }
636}
637
638/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
639
640// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
641
mtklein55e88b22015-01-21 15:50:13 -0800642static SkTDArray<skiatest::Test> gThreadedTests, gGPUTests;
mtklein748ca3b2015-01-15 10:56:12 -0800643
644static void gather_tests() {
mtklein6c5fed22015-01-20 13:47:23 -0800645 if (!FLAGS_src.contains("tests")) {
mtklein748ca3b2015-01-15 10:56:12 -0800646 return;
647 }
mtklein6393c062015-04-27 08:45:01 -0700648 for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r; r = r->next()) {
649 if (!in_shard()) {
650 continue;
651 }
halcanary87f3ba42015-01-20 09:30:20 -0800652 // Despite its name, factory() is returning a reference to
653 // link-time static const POD data.
654 const skiatest::Test& test = r->factory();
655 if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
mtklein748ca3b2015-01-15 10:56:12 -0800656 continue;
657 }
halcanary87f3ba42015-01-20 09:30:20 -0800658 if (test.needsGpu && gpu_supported()) {
mtklein55e88b22015-01-21 15:50:13 -0800659 (FLAGS_gpu_threading ? gThreadedTests : gGPUTests).push(test);
halcanary87f3ba42015-01-20 09:30:20 -0800660 } else if (!test.needsGpu && FLAGS_cpu) {
mtklein55e88b22015-01-21 15:50:13 -0800661 gThreadedTests.push(test);
mtklein82d28432015-01-15 12:46:02 -0800662 }
mtklein748ca3b2015-01-15 10:56:12 -0800663 }
664}
665
halcanary87f3ba42015-01-20 09:30:20 -0800666static void run_test(skiatest::Test* test) {
667 struct : public skiatest::Reporter {
mtklein36352bf2015-03-25 18:17:31 -0700668 void reportFailed(const skiatest::Failure& failure) override {
halcanary87f3ba42015-01-20 09:30:20 -0800669 fail(failure.toString());
670 JsonWriter::AddTestFailure(failure);
671 }
mtklein36352bf2015-03-25 18:17:31 -0700672 bool allowExtendedTest() const override {
halcanary87f3ba42015-01-20 09:30:20 -0800673 return FLAGS_pathOpsExtended;
674 }
mtklein36352bf2015-03-25 18:17:31 -0700675 bool verbose() const override { return FLAGS_veryVerbose; }
halcanary87f3ba42015-01-20 09:30:20 -0800676 } reporter;
djsollen824996a2015-06-12 12:06:22 -0700677
678 SkString note;
679 SkString whyBlacklisted = is_blacklisted("_", "tests", "_", test->name);
680 if (!whyBlacklisted.isEmpty()) {
681 note.appendf(" (--blacklist %s)", whyBlacklisted.c_str());
682 }
683
mtklein748ca3b2015-01-15 10:56:12 -0800684 WallTimer timer;
685 timer.start();
djsollen824996a2015-06-12 12:06:22 -0700686 if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) {
djsollen54416de2015-04-03 07:24:48 -0700687 start("unit", "test", "", test->name);
mtklein55e88b22015-01-21 15:50:13 -0800688 GrContextFactory factory;
bsalomon821e10e2015-06-04 14:15:33 -0700689 if (FLAGS_pre_log) {
690 SkDebugf("\nRunning test %s", test->name);
691 }
mtklein55e88b22015-01-21 15:50:13 -0800692 test->proc(&reporter, &factory);
mtklein748ca3b2015-01-15 10:56:12 -0800693 }
694 timer.end();
djsollen824996a2015-06-12 12:06:22 -0700695 done(timer.fWall, "unit", "test", "", test->name, note, "");
mtklein748ca3b2015-01-15 10:56:12 -0800696}
697
698/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
699
mtklein55e88b22015-01-21 15:50:13 -0800700// If we're isolating all GPU-bound work to one thread (the default), this function runs all that.
701static void run_enclave_and_gpu_tests(SkTArray<Task>* tasks) {
702 run_enclave(tasks);
703 for (int i = 0; i < gGPUTests.count(); i++) {
704 run_test(&gGPUTests[i]);
705 }
706}
707
mtkleinde6fc2b2015-03-12 06:28:54 -0700708// Some runs (mostly, Valgrind) are so slow that the bot framework thinks we've hung.
709// This prints something every once in a while so that it knows we're still working.
mtklein2e1c47e2015-03-12 07:16:56 -0700710static void start_keepalive() {
711 struct Loop {
712 static void forever(void*) {
713 for (;;) {
714 static const int kSec = 300;
715 #if defined(SK_BUILD_FOR_WIN)
716 Sleep(kSec * 1000);
717 #else
718 sleep(kSec);
719 #endif
mtkleinb37cb412015-03-18 05:27:14 -0700720 SkString running;
721 {
722 SkAutoMutexAcquire lock(gRunningMutex);
723 for (int i = 0; i < gRunning.count(); i++) {
724 running.appendf("\n\t%s", gRunning[i].c_str());
725 }
726 }
727 SkDebugf("\nCurrently running:%s\n", running.c_str());
mtklein2e1c47e2015-03-12 07:16:56 -0700728 }
729 }
730 };
731 static SkThread* intentionallyLeaked = new SkThread(Loop::forever);
732 intentionallyLeaked->start();
mtkleinde6fc2b2015-03-12 06:28:54 -0700733}
734
caryclark83ca6282015-06-10 09:31:09 -0700735#define PORTABLE_FONT_PREFIX "Toy Liberation "
736
737static SkTypeface* create_from_name(const char familyName[], SkTypeface::Style style) {
738 if (familyName && strlen(familyName) > sizeof(PORTABLE_FONT_PREFIX)
739 && !strncmp(familyName, PORTABLE_FONT_PREFIX, sizeof(PORTABLE_FONT_PREFIX) - 1)) {
740 return sk_tool_utils::create_portable_typeface_always(familyName, style);
741 }
742 return NULL;
743}
744
745#undef PORTABLE_FONT_PREFIX
746
747extern SkTypeface* (*gCreateTypefaceDelegate)(const char [], SkTypeface::Style );
748
jcgregorio3b27ade2014-11-13 08:06:40 -0800749int dm_main();
caryclark17f0b6d2014-07-22 10:15:34 -0700750int dm_main() {
jcgregorio3b27ade2014-11-13 08:06:40 -0800751 SetupCrashHandler();
commit-bot@chromium.org39e8d932014-05-29 20:14:48 +0000752 SkAutoGraphics ag;
mtklein406654b2014-09-03 15:34:37 -0700753 SkTaskGroup::Enabler enabled(FLAGS_threads);
mtkleine67164d2015-02-02 13:24:37 -0800754 if (FLAGS_leaks) {
755 SkInstCountPrintLeaksOnExit();
756 }
caryclark83ca6282015-06-10 09:31:09 -0700757 gCreateTypefaceDelegate = &create_from_name;
commit-bot@chromium.orga65e2fd2014-05-30 17:23:31 +0000758
mtklein2e1c47e2015-03-12 07:16:56 -0700759 start_keepalive();
mtkleinde6fc2b2015-03-12 06:28:54 -0700760
mtklein62bd1a62015-01-27 14:46:26 -0800761 gather_gold();
borenet09ed4802015-04-03 14:15:33 -0700762 gather_uninteresting_hashes();
mtklein62bd1a62015-01-27 14:46:26 -0800763
mtklein748ca3b2015-01-15 10:56:12 -0800764 gather_srcs();
765 gather_sinks();
766 gather_tests();
commit-bot@chromium.org0dc5bd12014-02-26 16:31:22 +0000767
mtklein55e88b22015-01-21 15:50:13 -0800768 gPending = gSrcs.count() * gSinks.count() + gThreadedTests.count() + gGPUTests.count();
mtklein748ca3b2015-01-15 10:56:12 -0800769 SkDebugf("%d srcs * %d sinks + %d tests == %d tasks\n",
mtklein55e88b22015-01-21 15:50:13 -0800770 gSrcs.count(), gSinks.count(), gThreadedTests.count() + gGPUTests.count(), gPending);
mtklein748ca3b2015-01-15 10:56:12 -0800771
772 // We try to exploit as much parallelism as is safe. Most Src/Sink pairs run on any thread,
773 // but Sinks that identify as part of a particular enclave run serially on a single thread.
mtklein82d28432015-01-15 12:46:02 -0800774 // CPU tests run on any thread. GPU tests depend on --gpu_threading.
mtklein748ca3b2015-01-15 10:56:12 -0800775 SkTArray<Task> enclaves[kNumEnclaves];
776 for (int j = 0; j < gSinks.count(); j++) {
777 SkTArray<Task>& tasks = enclaves[gSinks[j]->enclave()];
778 for (int i = 0; i < gSrcs.count(); i++) {
779 tasks.push_back(Task(gSrcs[i], gSinks[j]));
780 }
commit-bot@chromium.org38aeb0f2014-02-26 23:01:57 +0000781 }
782
mtklein748ca3b2015-01-15 10:56:12 -0800783 SkTaskGroup tg;
mtklein55e88b22015-01-21 15:50:13 -0800784 tg.batch(run_test, gThreadedTests.begin(), gThreadedTests.count());
785 for (int i = 0; i < kNumEnclaves; i++) {
786 switch(i) {
787 case kAnyThread_Enclave:
788 tg.batch(Task::Run, enclaves[i].begin(), enclaves[i].count());
789 break;
790 case kGPU_Enclave:
791 tg.add(run_enclave_and_gpu_tests, &enclaves[i]);
792 break;
793 default:
794 tg.add(run_enclave, &enclaves[i]);
795 break;
mtklein82d28432015-01-15 12:46:02 -0800796 }
mtklein55e88b22015-01-21 15:50:13 -0800797 }
mtklein748ca3b2015-01-15 10:56:12 -0800798 tg.wait();
mtklein748ca3b2015-01-15 10:56:12 -0800799 // At this point we're back in single-threaded land.
caryclarkf53ce802015-06-15 06:48:30 -0700800 sk_tool_utils::release_portable_typefaces();
mtklein@google.comd36522d2013-10-16 13:02:15 +0000801
mtklein2f64eec2015-01-15 14:20:41 -0800802 SkDebugf("\n");
mtklein748ca3b2015-01-15 10:56:12 -0800803 if (gFailures.count() > 0) {
804 SkDebugf("Failures:\n");
805 for (int i = 0; i < gFailures.count(); i++) {
mtklein9dc09102015-01-15 15:47:33 -0800806 SkDebugf("\t%s\n", gFailures[i].c_str());
mtklein748ca3b2015-01-15 10:56:12 -0800807 }
808 SkDebugf("%d failures\n", gFailures.count());
809 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800810 }
mtklein748ca3b2015-01-15 10:56:12 -0800811 if (gPending > 0) {
812 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n");
813 return 1;
mtklein114c3cd2015-01-15 10:15:02 -0800814 }
mtklein748ca3b2015-01-15 10:56:12 -0800815 return 0;
mtklein@google.comd36522d2013-10-16 13:02:15 +0000816}
jcgregorio3b27ade2014-11-13 08:06:40 -0800817
borenet48087572015-04-02 12:16:36 -0700818#if !defined(SK_BUILD_FOR_IOS)
jcgregorio3b27ade2014-11-13 08:06:40 -0800819int main(int argc, char** argv) {
820 SkCommandLineFlags::Parse(argc, argv);
821 return dm_main();
822}
823#endif