2015-03-25 14:11:02 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2014-11-13 16:06:40 +00:00
|
|
|
#include "CrashHandler.h"
|
2015-01-15 18:56:12 +00:00
|
|
|
#include "DMJsonWriter.h"
|
|
|
|
#include "DMSrcSink.h"
|
2015-02-23 20:18:05 +00:00
|
|
|
#include "DMSrcSinkAndroid.h"
|
2015-01-15 18:56:12 +00:00
|
|
|
#include "OverwriteLine.h"
|
|
|
|
#include "ProcStats.h"
|
|
|
|
#include "SkBBHFactory.h"
|
2015-01-27 22:46:26 +00:00
|
|
|
#include "SkChecksum.h"
|
2014-07-22 17:15:34 +00:00
|
|
|
#include "SkCommonFlags.h"
|
2013-10-16 13:02:15 +00:00
|
|
|
#include "SkForceLinking.h"
|
|
|
|
#include "SkGraphics.h"
|
2015-02-02 21:24:37 +00:00
|
|
|
#include "SkInstCnt.h"
|
2015-01-15 18:56:12 +00:00
|
|
|
#include "SkMD5.h"
|
Start to rework DM JSON handling.
DM's striking off into its own JSON world. This gets strawman implementations
in place for writing and reading a JSON file mapping test name to hashes.
For what it's worth, I basically want to change _all_ these pieces,
- MD5 is slow and we can replace it with something faster,
- JSON schema needs room to grow more data,
- it'd be nice to hash once instead of twice when reading and writing,
- this code wants lots of refactoring,
but this gives us a starting platform to work on these bits at our leisure.
E.x. file for now:
mtklein@mtklein ~/skia (dm)> cat good/dm.json
{
"3x3bitmaprect_565" : "fc70d985fbfbe70e3a3c9dc626d4f5bc",
"3x3bitmaprect_8888" : "df1591dde35907399734ea19feb76663",
"3x3bitmaprect_gpu" : "df1591dde35907399734ea19feb76663",
"aaclip_565" : "1862798689b838a7ab0dc0652b9ace3a",
"aaclip_8888" : "47bb314329f0ce243f1d83fd583decb7",
"aaclip_gpu" : "75f72412d0ef4815770202d297246e7d",
...
BUG=skia:
R=jcgregorio@google.com, stephana@google.com, mtklein@google.com
Author: mtklein@chromium.org
Review URL: https://codereview.chromium.org/546873002
2014-09-08 15:05:18 +00:00
|
|
|
#include "SkOSFile.h"
|
2015-02-20 20:30:19 +00:00
|
|
|
#include "SkTHash.h"
|
SkThreadPool ~~> SkTaskGroup
SkTaskGroup is like SkThreadPool except the threads stay in
one global pool. Each SkTaskGroup itself is tiny (4 bytes)
and its wait() method applies only to tasks add()ed to that
instance, not the whole thread pool.
This means we don't need to bring up new thread pools when
tests themselves want to use multithreading (e.g. pathops,
quilt). We just create a new SkTaskGroup and wait for that
to complete. This should be more efficient, and allow us
to expand where we use threads to really latency sensitive
places. E.g. we can probably now use these in nanobench
for CPU .skp rendering.
Now that all threads are sharing the same pool, I think we
can remove most of the custom mechanism pathops tests use
to control threading. They'll just ride on the global pool
with all other tests now.
This (temporarily?) removes the GPU multithreading feature
from DM, which we don't use.
On my desktop, DM runs a little faster (57s -> 55s) in
Debug, and a lot faster in Release (36s -> 24s). The bots
show speedups of similar proportions, cutting more than a
minute off the N4/Release and Win7/Debug runtimes.
BUG=skia:
Committed: https://skia.googlesource.com/skia/+/9c7207b5dc71dc5a96a2eb107d401133333d5b6f
R=caryclark@google.com, bsalomon@google.com, bungeman@google.com, mtklein@google.com, reed@google.com
Author: mtklein@chromium.org
Review URL: https://codereview.chromium.org/531653002
2014-09-03 22:34:37 +00:00
|
|
|
#include "SkTaskGroup.h"
|
2015-03-12 13:28:54 +00:00
|
|
|
#include "SkThreadUtils.h"
|
2014-02-26 16:31:22 +00:00
|
|
|
#include "Test.h"
|
2015-01-15 18:56:12 +00:00
|
|
|
#include "Timer.h"
|
2014-06-03 20:57:14 +00:00
|
|
|
|
2015-04-03 14:24:48 +00:00
|
|
|
DEFINE_string(src, "tests gm skp image", "Source types to test.");
|
2015-01-15 18:56:12 +00:00
|
|
|
DEFINE_bool(nameByHash, false,
|
|
|
|
"If true, write to FLAGS_writePath[0]/<hash>.png instead of "
|
2015-04-03 14:24:48 +00:00
|
|
|
"to FLAGS_writePath[0]/<config>/<sourceType>/<sourceOptions>/<name>.png");
|
2015-01-15 18:56:12 +00:00
|
|
|
DEFINE_bool2(pathOpsExtended, x, false, "Run extended pathOps tests.");
|
2015-02-17 19:13:33 +00:00
|
|
|
DEFINE_string(matrix, "1 0 0 1",
|
|
|
|
"2x2 scale+skew matrix to apply or upright when using "
|
|
|
|
"'matrix' or 'upright' in config.");
|
2015-01-15 20:46:02 +00:00
|
|
|
DEFINE_bool(gpu_threading, false, "Allow GPU work to run on multiple threads?");
|
2013-10-16 13:02:15 +00:00
|
|
|
|
2015-01-15 21:44:22 +00:00
|
|
|
DEFINE_string(blacklist, "",
|
2015-04-03 14:24:48 +00:00
|
|
|
"Space-separated config/src/srcOptions/name quadruples to blacklist. '_' matches anything. E.g. \n"
|
|
|
|
"'--blacklist gpu skp _ _' will blacklist all SKPs drawn into the gpu config.\n"
|
|
|
|
"'--blacklist gpu skp _ _ 8888 gm _ aarects' will also blacklist the aarects GM on 8888.");
|
2015-01-15 21:44:22 +00:00
|
|
|
|
2015-01-27 22:46:26 +00:00
|
|
|
DEFINE_string2(readPath, r, "", "If set check for equality with golden results in this directory.");
|
|
|
|
|
2015-04-03 21:15:33 +00:00
|
|
|
DEFINE_string(uninterestingHashesFile, "",
|
|
|
|
"File containing a list of uninteresting hashes. If a result hashes to something in "
|
|
|
|
"this list, no image is written for that result.");
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
__SK_FORCE_IMAGE_DECODER_LINKING;
|
|
|
|
using namespace DM;
|
2013-10-16 13:02:15 +00:00
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
2014-06-30 13:36:31 +00:00
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
SK_DECLARE_STATIC_MUTEX(gFailuresMutex);
|
|
|
|
static SkTArray<SkString> gFailures;
|
2013-10-16 13:02:15 +00:00
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
static void fail(ImplicitString err) {
|
|
|
|
SkAutoMutexAcquire lock(gFailuresMutex);
|
|
|
|
SkDebugf("\n\nFAILURE: %s\n\n", err.c_str());
|
|
|
|
gFailures.push_back(err);
|
|
|
|
}
|
2013-10-16 13:02:15 +00:00
|
|
|
|
2015-03-18 12:27:14 +00:00
|
|
|
static int32_t gPending = 0; // Atomic. Total number of running and queued tasks.
|
|
|
|
|
|
|
|
SK_DECLARE_STATIC_MUTEX(gRunningMutex);
|
|
|
|
static SkTArray<SkString> gRunning;
|
2015-01-15 18:56:12 +00:00
|
|
|
|
2015-02-03 02:26:03 +00:00
|
|
|
static void done(double ms,
|
2015-04-03 14:24:48 +00:00
|
|
|
ImplicitString config, ImplicitString src, ImplicitString srcOptions,
|
|
|
|
ImplicitString name, ImplicitString note, ImplicitString log) {
|
|
|
|
SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
|
|
|
|
srcOptions.c_str(), name.c_str());
|
2015-03-18 12:27:14 +00:00
|
|
|
{
|
|
|
|
SkAutoMutexAcquire lock(gRunningMutex);
|
|
|
|
for (int i = 0; i < gRunning.count(); i++) {
|
|
|
|
if (gRunning[i] == id) {
|
|
|
|
gRunning.removeShuffle(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!FLAGS_verbose) {
|
|
|
|
note = "";
|
|
|
|
}
|
2015-02-03 02:26:03 +00:00
|
|
|
if (!log.isEmpty()) {
|
|
|
|
log.prepend("\n");
|
|
|
|
}
|
2015-02-05 17:53:44 +00:00
|
|
|
auto pending = sk_atomic_dec(&gPending)-1;
|
2015-03-18 12:27:14 +00:00
|
|
|
SkDebugf("%s(%4dMB %5d) %s\t%s%s%s", FLAGS_verbose ? "\n" : kSkOverwriteLine
|
|
|
|
, sk_tools::getBestResidentSetSizeMB()
|
|
|
|
, pending
|
|
|
|
, HumanizeMs(ms).c_str()
|
|
|
|
, id.c_str()
|
|
|
|
, note.c_str()
|
|
|
|
, log.c_str());
|
2015-01-23 13:48:00 +00:00
|
|
|
// We write our dm.json file every once in a while in case we crash.
|
|
|
|
// Notice this also handles the final dm.json when pending == 0.
|
|
|
|
if (pending % 500 == 0) {
|
|
|
|
JsonWriter::DumpJson();
|
|
|
|
}
|
2015-01-10 19:18:04 +00:00
|
|
|
}
|
|
|
|
|
2015-04-03 14:24:48 +00:00
|
|
|
static void start(ImplicitString config, ImplicitString src,
|
|
|
|
ImplicitString srcOptions, ImplicitString name) {
|
|
|
|
SkString id = SkStringPrintf("%s %s %s %s", config.c_str(), src.c_str(),
|
|
|
|
srcOptions.c_str(), name.c_str());
|
2015-03-18 12:27:14 +00:00
|
|
|
SkAutoMutexAcquire lock(gRunningMutex);
|
|
|
|
gRunning.push_back(id);
|
|
|
|
}
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
|
|
|
2015-01-27 22:46:26 +00:00
|
|
|
struct Gold : public SkString {
|
2015-02-20 20:30:19 +00:00
|
|
|
Gold() : SkString("") {}
|
2015-04-03 14:24:48 +00:00
|
|
|
Gold(ImplicitString sink, ImplicitString src, ImplicitString srcOptions,
|
|
|
|
ImplicitString name, ImplicitString md5)
|
2015-01-27 22:46:26 +00:00
|
|
|
: SkString("") {
|
|
|
|
this->append(sink);
|
|
|
|
this->append(src);
|
2015-04-03 14:24:48 +00:00
|
|
|
this->append(srcOptions);
|
2015-01-27 22:46:26 +00:00
|
|
|
this->append(name);
|
|
|
|
this->append(md5);
|
|
|
|
}
|
2015-03-20 20:48:42 +00:00
|
|
|
static uint32_t Hash(const Gold& g) { return SkGoodHash((const SkString&)g); }
|
2015-01-27 22:46:26 +00:00
|
|
|
};
|
2015-02-20 20:30:19 +00:00
|
|
|
static SkTHashSet<Gold, Gold::Hash> gGold;
|
2015-01-27 22:46:26 +00:00
|
|
|
|
|
|
|
static void add_gold(JsonWriter::BitmapResult r) {
|
2015-04-03 14:24:48 +00:00
|
|
|
gGold.add(Gold(r.config, r.sourceType, r.sourceOptions, r.name, r.md5));
|
2015-01-27 22:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gather_gold() {
|
|
|
|
if (!FLAGS_readPath.isEmpty()) {
|
|
|
|
SkString path(FLAGS_readPath[0]);
|
|
|
|
path.append("/dm.json");
|
|
|
|
if (!JsonWriter::ReadJson(path.c_str(), add_gold)) {
|
|
|
|
fail(SkStringPrintf("Couldn't read %s for golden results.", path.c_str()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
|
|
|
2015-04-03 21:15:33 +00:00
|
|
|
static SkTHashSet<SkString> gUninterestingHashes;
|
|
|
|
|
|
|
|
static void gather_uninteresting_hashes() {
|
|
|
|
if (!FLAGS_uninterestingHashesFile.isEmpty()) {
|
|
|
|
SkAutoTUnref<SkData> data(SkData::NewFromFileName(FLAGS_uninterestingHashesFile[0]));
|
|
|
|
SkTArray<SkString> hashes;
|
|
|
|
SkStrSplit((const char*)data->data(), "\n", &hashes);
|
|
|
|
for (const SkString& hash : hashes) {
|
|
|
|
gUninterestingHashes.add(hash);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
template <typename T>
|
2015-04-03 14:24:48 +00:00
|
|
|
struct Tagged : public SkAutoTDelete<T> {
|
|
|
|
const char* tag;
|
|
|
|
const char* options;
|
|
|
|
};
|
2015-01-15 18:56:12 +00:00
|
|
|
|
|
|
|
static const bool kMemcpyOK = true;
|
|
|
|
|
|
|
|
static SkTArray<Tagged<Src>, kMemcpyOK> gSrcs;
|
|
|
|
static SkTArray<Tagged<Sink>, kMemcpyOK> gSinks;
|
|
|
|
|
2015-04-03 14:24:48 +00:00
|
|
|
static void push_src(const char* tag, const char* options, Src* s) {
|
2015-01-15 18:56:12 +00:00
|
|
|
SkAutoTDelete<Src> src(s);
|
|
|
|
if (FLAGS_src.contains(tag) &&
|
|
|
|
!SkCommandLineFlags::ShouldSkip(FLAGS_match, src->name().c_str())) {
|
|
|
|
Tagged<Src>& s = gSrcs.push_back();
|
|
|
|
s.reset(src.detach());
|
|
|
|
s.tag = tag;
|
2015-04-03 14:24:48 +00:00
|
|
|
s.options = options;
|
2013-10-16 13:02:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-19 13:03:39 +00:00
|
|
|
static bool codec_supported(const char* ext) {
|
|
|
|
// FIXME: Once other versions of SkCodec are available, we can add them to this
|
|
|
|
// list (and eventually we can remove this check once they are all supported).
|
2015-04-01 13:58:48 +00:00
|
|
|
static const char* const exts[] = {
|
|
|
|
"bmp", "gif", "png", "ico", "wbmp",
|
|
|
|
"BMP", "GIF", "PNG", "ICO", "WBMP"
|
|
|
|
};
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < SK_ARRAY_COUNT(exts); i++) {
|
|
|
|
if (0 == strcmp(exts[i], ext)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2015-03-19 13:03:39 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
static void gather_srcs() {
|
|
|
|
for (const skiagm::GMRegistry* r = skiagm::GMRegistry::Head(); r; r = r->next()) {
|
2015-04-03 14:24:48 +00:00
|
|
|
push_src("gm", "", new GMSrc(r->factory()));
|
2013-10-16 13:02:15 +00:00
|
|
|
}
|
2015-01-30 15:31:19 +00:00
|
|
|
for (int i = 0; i < FLAGS_skps.count(); i++) {
|
|
|
|
const char* path = FLAGS_skps[i];
|
|
|
|
if (sk_isdir(path)) {
|
|
|
|
SkOSFile::Iter it(path, "skp");
|
|
|
|
for (SkString file; it.next(&file); ) {
|
2015-04-03 14:24:48 +00:00
|
|
|
push_src("skp", "", new SKPSrc(SkOSPath::Join(path, file.c_str())));
|
2015-01-30 15:31:19 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-04-03 14:24:48 +00:00
|
|
|
push_src("skp", "", new SKPSrc(path));
|
2014-02-28 20:31:31 +00:00
|
|
|
}
|
2014-02-26 16:31:22 +00:00
|
|
|
}
|
2015-01-30 17:58:58 +00:00
|
|
|
static const char* const exts[] = {
|
|
|
|
"bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico",
|
|
|
|
"BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO",
|
|
|
|
};
|
|
|
|
for (int i = 0; i < FLAGS_images.count(); i++) {
|
|
|
|
const char* flag = FLAGS_images[i];
|
|
|
|
if (sk_isdir(flag)) {
|
|
|
|
for (size_t j = 0; j < SK_ARRAY_COUNT(exts); j++) {
|
|
|
|
SkOSFile::Iter it(flag, exts[j]);
|
|
|
|
for (SkString file; it.next(&file); ) {
|
|
|
|
SkString path = SkOSPath::Join(flag, file.c_str());
|
2015-04-03 14:24:48 +00:00
|
|
|
push_src("image", "decode", new ImageSrc(path)); // Decode entire image
|
|
|
|
push_src("image", "subset", new ImageSrc(path, 2)); // Decode into 2x2 subsets
|
2015-03-19 13:03:39 +00:00
|
|
|
if (codec_supported(exts[j])) {
|
2015-04-03 14:24:48 +00:00
|
|
|
push_src("image", "codec", new CodecSrc(path, CodecSrc::kNormal_Mode));
|
|
|
|
push_src("image", "scanline", new CodecSrc(path, CodecSrc::kScanline_Mode));
|
2015-03-19 13:03:39 +00:00
|
|
|
}
|
2015-01-30 17:58:58 +00:00
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
}
|
2015-01-30 17:58:58 +00:00
|
|
|
} else if (sk_exists(flag)) {
|
|
|
|
// assume that FLAGS_images[i] is a valid image if it is a file.
|
2015-04-03 14:24:48 +00:00
|
|
|
push_src("image", "decode", new ImageSrc(flag)); // Decode entire image.
|
|
|
|
push_src("image", "subset", new ImageSrc(flag, 2)); // Decode into 2 x 2 subsets
|
|
|
|
push_src("image", "codec", new CodecSrc(flag, CodecSrc::kNormal_Mode));
|
|
|
|
push_src("image", "scanline", new CodecSrc(flag, CodecSrc::kScanline_Mode));
|
2015-01-15 18:15:02 +00:00
|
|
|
}
|
|
|
|
}
|
2015-01-15 16:30:25 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
static GrGLStandard get_gpu_api() {
|
|
|
|
if (FLAGS_gpuAPI.contains("gl")) { return kGL_GrGLStandard; }
|
|
|
|
if (FLAGS_gpuAPI.contains("gles")) { return kGLES_GrGLStandard; }
|
|
|
|
return kNone_GrGLStandard;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void push_sink(const char* tag, Sink* s) {
|
|
|
|
SkAutoTDelete<Sink> sink(s);
|
|
|
|
if (!FLAGS_config.contains(tag)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Try a noop Src as a canary. If it fails, skip this sink.
|
|
|
|
struct : public Src {
|
2015-03-26 01:17:31 +00:00
|
|
|
Error draw(SkCanvas*) const override { return ""; }
|
|
|
|
SkISize size() const override { return SkISize::Make(16, 16); }
|
|
|
|
Name name() const override { return "noop"; }
|
2015-01-15 18:56:12 +00:00
|
|
|
} noop;
|
|
|
|
|
|
|
|
SkBitmap bitmap;
|
|
|
|
SkDynamicMemoryWStream stream;
|
2015-02-03 02:26:03 +00:00
|
|
|
SkString log;
|
|
|
|
Error err = sink->draw(noop, &bitmap, &stream, &log);
|
2015-03-05 16:40:28 +00:00
|
|
|
if (err.isFatal()) {
|
2015-01-15 18:56:12 +00:00
|
|
|
SkDebugf("Skipping %s: %s\n", tag, err.c_str());
|
2015-01-15 16:30:25 +00:00
|
|
|
return;
|
2014-07-28 14:21:24 +00:00
|
|
|
}
|
2015-01-15 16:30:25 +00:00
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
Tagged<Sink>& ts = gSinks.push_back();
|
|
|
|
ts.reset(sink.detach());
|
|
|
|
ts.tag = tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool gpu_supported() {
|
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
return FLAGS_gpu;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static Sink* create_sink(const char* tag) {
|
|
|
|
#define SINK(t, sink, ...) if (0 == strcmp(t, tag)) { return new sink(__VA_ARGS__); }
|
|
|
|
if (gpu_supported()) {
|
2015-01-15 20:46:02 +00:00
|
|
|
typedef GrContextFactory Gr;
|
2015-01-15 18:56:12 +00:00
|
|
|
const GrGLStandard api = get_gpu_api();
|
2015-01-15 20:46:02 +00:00
|
|
|
SINK("gpunull", GPUSink, Gr::kNull_GLContextType, api, 0, false, FLAGS_gpu_threading);
|
|
|
|
SINK("gpudebug", GPUSink, Gr::kDebug_GLContextType, api, 0, false, FLAGS_gpu_threading);
|
|
|
|
SINK("gpu", GPUSink, Gr::kNative_GLContextType, api, 0, false, FLAGS_gpu_threading);
|
|
|
|
SINK("gpudft", GPUSink, Gr::kNative_GLContextType, api, 0, true, FLAGS_gpu_threading);
|
|
|
|
SINK("msaa4", GPUSink, Gr::kNative_GLContextType, api, 4, false, FLAGS_gpu_threading);
|
|
|
|
SINK("msaa16", GPUSink, Gr::kNative_GLContextType, api, 16, false, FLAGS_gpu_threading);
|
|
|
|
SINK("nvprmsaa4", GPUSink, Gr::kNVPR_GLContextType, api, 4, false, FLAGS_gpu_threading);
|
|
|
|
SINK("nvprmsaa16", GPUSink, Gr::kNVPR_GLContextType, api, 16, false, FLAGS_gpu_threading);
|
2015-01-15 18:56:12 +00:00
|
|
|
#if SK_ANGLE
|
2015-01-15 20:46:02 +00:00
|
|
|
SINK("angle", GPUSink, Gr::kANGLE_GLContextType, api, 0, false, FLAGS_gpu_threading);
|
2015-01-15 18:56:12 +00:00
|
|
|
#endif
|
|
|
|
#if SK_MESA
|
2015-01-15 20:46:02 +00:00
|
|
|
SINK("mesa", GPUSink, Gr::kMESA_GLContextType, api, 0, false, FLAGS_gpu_threading);
|
2015-01-15 18:56:12 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-02-23 20:18:05 +00:00
|
|
|
#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
|
|
|
|
SINK("hwui", HWUISink);
|
|
|
|
#endif
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
if (FLAGS_cpu) {
|
|
|
|
SINK("565", RasterSink, kRGB_565_SkColorType);
|
|
|
|
SINK("8888", RasterSink, kN32_SkColorType);
|
2015-01-20 21:34:39 +00:00
|
|
|
SINK("pdf", PDFSink);
|
2015-01-28 19:35:18 +00:00
|
|
|
SINK("skp", SKPSink);
|
2015-02-01 04:00:58 +00:00
|
|
|
SINK("svg", SVGSink);
|
|
|
|
SINK("null", NullSink);
|
2015-03-03 17:13:09 +00:00
|
|
|
SINK("xps", XPSSink);
|
2015-01-15 18:56:12 +00:00
|
|
|
}
|
|
|
|
#undef SINK
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Sink* create_via(const char* tag, Sink* wrapped) {
|
|
|
|
#define VIA(t, via, ...) if (0 == strcmp(t, tag)) { return new via(__VA_ARGS__); }
|
2015-01-21 21:18:51 +00:00
|
|
|
VIA("pipe", ViaPipe, wrapped);
|
2015-01-15 18:56:12 +00:00
|
|
|
VIA("serialize", ViaSerialization, wrapped);
|
2015-01-21 21:18:51 +00:00
|
|
|
VIA("tiles", ViaTiles, 256, 256, NULL, wrapped);
|
|
|
|
VIA("tiles_rt", ViaTiles, 256, 256, new SkRTreeFactory, wrapped);
|
2015-01-15 18:56:12 +00:00
|
|
|
|
2015-02-17 19:13:33 +00:00
|
|
|
if (FLAGS_matrix.count() == 4) {
|
2015-01-15 18:56:12 +00:00
|
|
|
SkMatrix m;
|
2015-02-17 19:13:33 +00:00
|
|
|
m.reset();
|
|
|
|
m.setScaleX((SkScalar)atof(FLAGS_matrix[0]));
|
|
|
|
m.setSkewX ((SkScalar)atof(FLAGS_matrix[1]));
|
|
|
|
m.setSkewY ((SkScalar)atof(FLAGS_matrix[2]));
|
|
|
|
m.setScaleY((SkScalar)atof(FLAGS_matrix[3]));
|
|
|
|
VIA("matrix", ViaMatrix, m, wrapped);
|
|
|
|
VIA("upright", ViaUpright, m, wrapped);
|
2015-01-15 18:15:02 +00:00
|
|
|
}
|
2015-03-05 16:01:07 +00:00
|
|
|
|
|
|
|
#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
|
|
|
|
VIA("androidsdk", ViaAndroidSDK, wrapped);
|
|
|
|
#endif
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
#undef VIA
|
|
|
|
return NULL;
|
2014-07-28 14:21:24 +00:00
|
|
|
}
|
2014-05-14 17:55:32 +00:00
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
static void gather_sinks() {
|
|
|
|
for (int i = 0; i < FLAGS_config.count(); i++) {
|
|
|
|
const char* config = FLAGS_config[i];
|
|
|
|
SkTArray<SkString> parts;
|
|
|
|
SkStrSplit(config, "-", &parts);
|
|
|
|
|
|
|
|
Sink* sink = NULL;
|
|
|
|
for (int i = parts.count(); i-- > 0;) {
|
|
|
|
const char* part = parts[i].c_str();
|
|
|
|
Sink* next = (sink == NULL) ? create_sink(part) : create_via(part, sink);
|
|
|
|
if (next == NULL) {
|
|
|
|
SkDebugf("Skipping %s: Don't understand '%s'.\n", config, part);
|
|
|
|
delete sink;
|
|
|
|
sink = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
sink = next;
|
2015-01-15 18:15:02 +00:00
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
if (sink) {
|
|
|
|
push_sink(config, sink);
|
2015-01-15 18:15:02 +00:00
|
|
|
}
|
2014-05-14 17:55:32 +00:00
|
|
|
}
|
2015-01-15 18:15:02 +00:00
|
|
|
}
|
2014-05-14 17:55:32 +00:00
|
|
|
|
2015-01-15 21:44:22 +00:00
|
|
|
static bool match(const char* needle, const char* haystack) {
|
|
|
|
return 0 == strcmp("_", needle) || NULL != strstr(haystack, needle);
|
|
|
|
}
|
|
|
|
|
2015-04-03 14:24:48 +00:00
|
|
|
static ImplicitString is_blacklisted(const char* sink, const char* src,
|
|
|
|
const char* srcOptions, const char* name) {
|
2015-04-03 14:51:00 +00:00
|
|
|
for (int i = 0; i < FLAGS_blacklist.count() - 3; i += 4) {
|
2015-01-15 21:44:22 +00:00
|
|
|
if (match(FLAGS_blacklist[i+0], sink) &&
|
2015-04-03 14:24:48 +00:00
|
|
|
match(FLAGS_blacklist[i+1], src) &&
|
|
|
|
match(FLAGS_blacklist[i+2], srcOptions) &&
|
|
|
|
match(FLAGS_blacklist[i+3], name)) {
|
|
|
|
return SkStringPrintf("%s %s %s %s",
|
|
|
|
FLAGS_blacklist[i+0], FLAGS_blacklist[i+1],
|
|
|
|
FLAGS_blacklist[i+2], FLAGS_blacklist[i+3]);
|
2015-01-15 21:44:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
// The finest-grained unit of work we can run: draw a single Src into a single Sink,
|
|
|
|
// report any errors, and perhaps write out the output: a .png of the bitmap, or a raw stream.
|
|
|
|
struct Task {
|
|
|
|
Task(const Tagged<Src>& src, const Tagged<Sink>& sink) : src(src), sink(sink) {}
|
|
|
|
const Tagged<Src>& src;
|
|
|
|
const Tagged<Sink>& sink;
|
|
|
|
|
|
|
|
static void Run(Task* task) {
|
2015-01-15 21:44:22 +00:00
|
|
|
SkString name = task->src->name();
|
2015-03-18 12:27:14 +00:00
|
|
|
SkString note;
|
2015-04-03 14:24:48 +00:00
|
|
|
SkString whyBlacklisted = is_blacklisted(task->sink.tag, task->src.tag,
|
|
|
|
task->src.options, name.c_str());
|
2015-03-18 12:27:14 +00:00
|
|
|
if (!whyBlacklisted.isEmpty()) {
|
|
|
|
note.appendf(" (--blacklist %s)", whyBlacklisted.c_str());
|
|
|
|
}
|
2015-02-03 02:26:03 +00:00
|
|
|
SkString log;
|
2015-01-15 18:56:12 +00:00
|
|
|
WallTimer timer;
|
|
|
|
timer.start();
|
2015-01-15 21:44:22 +00:00
|
|
|
if (!FLAGS_dryRun && whyBlacklisted.isEmpty()) {
|
2015-01-15 18:56:12 +00:00
|
|
|
SkBitmap bitmap;
|
|
|
|
SkDynamicMemoryWStream stream;
|
2015-04-03 14:24:48 +00:00
|
|
|
start(task->sink.tag, task->src.tag, task->src.options, name.c_str());
|
2015-02-03 02:26:03 +00:00
|
|
|
Error err = task->sink->draw(*task->src, &bitmap, &stream, &log);
|
2015-01-15 18:56:12 +00:00
|
|
|
if (!err.isEmpty()) {
|
2015-03-05 16:40:28 +00:00
|
|
|
timer.end();
|
|
|
|
if (err.isFatal()) {
|
2015-04-03 14:24:48 +00:00
|
|
|
fail(SkStringPrintf("%s %s %s %s: %s",
|
2015-03-05 16:40:28 +00:00
|
|
|
task->sink.tag,
|
|
|
|
task->src.tag,
|
2015-04-03 14:24:48 +00:00
|
|
|
task->src.options,
|
2015-03-05 16:40:28 +00:00
|
|
|
name.c_str(),
|
|
|
|
err.c_str()));
|
2015-03-18 12:27:14 +00:00
|
|
|
} else {
|
|
|
|
note.appendf(" (skipped: %s)", err.c_str());
|
2015-03-05 16:40:28 +00:00
|
|
|
}
|
2015-04-03 14:24:48 +00:00
|
|
|
done(timer.fWall, task->sink.tag, task->src.tag, task->src.options,
|
|
|
|
name, note, log);
|
2015-03-05 16:40:28 +00:00
|
|
|
return;
|
2015-01-15 18:56:12 +00:00
|
|
|
}
|
2015-01-27 22:46:26 +00:00
|
|
|
SkAutoTDelete<SkStreamAsset> data(stream.detachAsStream());
|
|
|
|
|
|
|
|
SkString md5;
|
|
|
|
if (!FLAGS_writePath.isEmpty() || !FLAGS_readPath.isEmpty()) {
|
|
|
|
SkMD5 hash;
|
|
|
|
if (data->getLength()) {
|
|
|
|
hash.writeStream(data, data->getLength());
|
|
|
|
data->rewind();
|
|
|
|
} else {
|
|
|
|
hash.write(bitmap.getPixels(), bitmap.getSize());
|
|
|
|
}
|
|
|
|
SkMD5::Digest digest;
|
|
|
|
hash.finish(digest);
|
|
|
|
for (int i = 0; i < 16; i++) {
|
|
|
|
md5.appendf("%02x", digest.data[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!FLAGS_readPath.isEmpty() &&
|
2015-04-03 14:24:48 +00:00
|
|
|
!gGold.contains(Gold(task->sink.tag, task->src.tag,
|
|
|
|
task->src.options, name, md5))) {
|
|
|
|
fail(SkStringPrintf("%s not found for %s %s %s %s in %s",
|
2015-01-27 22:46:26 +00:00
|
|
|
md5.c_str(),
|
|
|
|
task->sink.tag,
|
|
|
|
task->src.tag,
|
2015-04-03 14:24:48 +00:00
|
|
|
task->src.options,
|
2015-01-27 22:46:26 +00:00
|
|
|
name.c_str(),
|
|
|
|
FLAGS_readPath[0]));
|
|
|
|
}
|
|
|
|
|
2015-04-03 21:15:33 +00:00
|
|
|
if (!FLAGS_writePath.isEmpty() && !gUninterestingHashes.contains(md5)) {
|
2015-01-15 18:56:12 +00:00
|
|
|
const char* ext = task->sink->fileExtension();
|
2015-01-27 22:46:26 +00:00
|
|
|
if (data->getLength()) {
|
|
|
|
WriteToDisk(*task, md5, ext, data, data->getLength(), NULL);
|
2015-01-30 19:00:12 +00:00
|
|
|
SkASSERT(bitmap.drawsNothing());
|
|
|
|
} else if (!bitmap.drawsNothing()) {
|
2015-01-27 22:46:26 +00:00
|
|
|
WriteToDisk(*task, md5, ext, NULL, 0, &bitmap);
|
2015-01-15 18:56:12 +00:00
|
|
|
}
|
|
|
|
}
|
2015-01-15 18:15:02 +00:00
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
timer.end();
|
2015-04-03 14:24:48 +00:00
|
|
|
done(timer.fWall, task->sink.tag, task->src.tag, task->src.options, name, note, log);
|
2014-12-13 00:41:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
static void WriteToDisk(const Task& task,
|
2015-01-27 22:46:26 +00:00
|
|
|
SkString md5,
|
|
|
|
const char* ext,
|
2015-01-15 18:56:12 +00:00
|
|
|
SkStream* data, size_t len,
|
2015-01-27 22:46:26 +00:00
|
|
|
const SkBitmap* bitmap) {
|
2015-01-15 18:56:12 +00:00
|
|
|
JsonWriter::BitmapResult result;
|
2015-04-03 14:24:48 +00:00
|
|
|
result.name = task.src->name();
|
|
|
|
result.config = task.sink.tag;
|
|
|
|
result.sourceType = task.src.tag;
|
|
|
|
result.sourceOptions = task.src.options;
|
|
|
|
result.ext = ext;
|
|
|
|
result.md5 = md5;
|
2015-01-15 18:56:12 +00:00
|
|
|
JsonWriter::AddBitmapResult(result);
|
2015-01-15 16:30:25 +00:00
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
const char* dir = FLAGS_writePath[0];
|
|
|
|
if (0 == strcmp(dir, "@")) { // Needed for iOS.
|
|
|
|
dir = FLAGS_resourcePath[0];
|
|
|
|
}
|
|
|
|
sk_mkdir(dir);
|
|
|
|
|
|
|
|
SkString path;
|
|
|
|
if (FLAGS_nameByHash) {
|
|
|
|
path = SkOSPath::Join(dir, result.md5.c_str());
|
|
|
|
path.append(".");
|
|
|
|
path.append(ext);
|
|
|
|
if (sk_exists(path.c_str())) {
|
|
|
|
return; // Content-addressed. If it exists already, we're done.
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
path = SkOSPath::Join(dir, task.sink.tag);
|
|
|
|
sk_mkdir(path.c_str());
|
|
|
|
path = SkOSPath::Join(path.c_str(), task.src.tag);
|
|
|
|
sk_mkdir(path.c_str());
|
2015-04-03 14:24:48 +00:00
|
|
|
if (strcmp(task.src.options, "") != 0) {
|
|
|
|
path = SkOSPath::Join(path.c_str(), task.src.options);
|
|
|
|
sk_mkdir(path.c_str());
|
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
path = SkOSPath::Join(path.c_str(), task.src->name().c_str());
|
|
|
|
path.append(".");
|
|
|
|
path.append(ext);
|
|
|
|
}
|
|
|
|
|
|
|
|
SkFILEWStream file(path.c_str());
|
|
|
|
if (!file.isValid()) {
|
|
|
|
fail(SkStringPrintf("Can't open %s for writing.\n", path.c_str()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bitmap) {
|
|
|
|
// We can't encode A8 bitmaps as PNGs. Convert them to 8888 first.
|
|
|
|
SkBitmap converted;
|
|
|
|
if (bitmap->info().colorType() == kAlpha_8_SkColorType) {
|
|
|
|
if (!bitmap->copyTo(&converted, kN32_SkColorType)) {
|
|
|
|
fail("Can't convert A8 to 8888.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bitmap = &converted;
|
|
|
|
}
|
|
|
|
if (!SkImageEncoder::EncodeStream(&file, *bitmap, SkImageEncoder::kPNG_Type, 100)) {
|
|
|
|
fail(SkStringPrintf("Can't encode PNG to %s.\n", path.c_str()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!file.writeStream(data, len)) {
|
|
|
|
fail(SkStringPrintf("Can't write to %s.\n", path.c_str()));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-01-15 18:15:02 +00:00
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
};
|
2013-10-16 13:02:15 +00:00
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
// Run all tasks in the same enclave serially on the same thread.
|
|
|
|
// They can't possibly run concurrently with each other.
|
|
|
|
static void run_enclave(SkTArray<Task>* tasks) {
|
|
|
|
for (int i = 0; i < tasks->count(); i++) {
|
|
|
|
Task::Run(tasks->begin() + i);
|
2013-10-16 13:02:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
|
|
|
|
|
|
// Unit tests don't fit so well into the Src/Sink model, so we give them special treatment.
|
|
|
|
|
2015-01-21 23:50:13 +00:00
|
|
|
static SkTDArray<skiatest::Test> gThreadedTests, gGPUTests;
|
2015-01-15 18:56:12 +00:00
|
|
|
|
|
|
|
static void gather_tests() {
|
2015-01-20 21:47:23 +00:00
|
|
|
if (!FLAGS_src.contains("tests")) {
|
2015-01-15 18:56:12 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-01-20 17:30:20 +00:00
|
|
|
for (const skiatest::TestRegistry* r = skiatest::TestRegistry::Head(); r;
|
|
|
|
r = r->next()) {
|
|
|
|
// Despite its name, factory() is returning a reference to
|
|
|
|
// link-time static const POD data.
|
|
|
|
const skiatest::Test& test = r->factory();
|
|
|
|
if (SkCommandLineFlags::ShouldSkip(FLAGS_match, test.name)) {
|
2015-01-15 18:56:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
2015-01-20 17:30:20 +00:00
|
|
|
if (test.needsGpu && gpu_supported()) {
|
2015-01-21 23:50:13 +00:00
|
|
|
(FLAGS_gpu_threading ? gThreadedTests : gGPUTests).push(test);
|
2015-01-20 17:30:20 +00:00
|
|
|
} else if (!test.needsGpu && FLAGS_cpu) {
|
2015-01-21 23:50:13 +00:00
|
|
|
gThreadedTests.push(test);
|
2015-01-15 20:46:02 +00:00
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
}
|
2014-06-30 13:36:31 +00:00
|
|
|
}
|
|
|
|
|
2015-01-20 17:30:20 +00:00
|
|
|
static void run_test(skiatest::Test* test) {
|
|
|
|
struct : public skiatest::Reporter {
|
2015-03-26 01:17:31 +00:00
|
|
|
void reportFailed(const skiatest::Failure& failure) override {
|
2015-01-20 17:30:20 +00:00
|
|
|
fail(failure.toString());
|
|
|
|
JsonWriter::AddTestFailure(failure);
|
|
|
|
}
|
2015-03-26 01:17:31 +00:00
|
|
|
bool allowExtendedTest() const override {
|
2015-01-20 17:30:20 +00:00
|
|
|
return FLAGS_pathOpsExtended;
|
|
|
|
}
|
2015-03-26 01:17:31 +00:00
|
|
|
bool verbose() const override { return FLAGS_veryVerbose; }
|
2015-01-20 17:30:20 +00:00
|
|
|
} reporter;
|
2015-01-15 18:56:12 +00:00
|
|
|
WallTimer timer;
|
|
|
|
timer.start();
|
|
|
|
if (!FLAGS_dryRun) {
|
2015-04-03 14:24:48 +00:00
|
|
|
start("unit", "test", "", test->name);
|
2015-01-21 23:50:13 +00:00
|
|
|
GrContextFactory factory;
|
|
|
|
test->proc(&reporter, &factory);
|
2014-02-26 23:01:57 +00:00
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
timer.end();
|
2015-04-03 14:24:48 +00:00
|
|
|
done(timer.fWall, "unit", "test", "", test->name, "", "");
|
2015-01-15 18:15:02 +00:00
|
|
|
}
|
2014-02-26 23:01:57 +00:00
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
|
|
|
|
|
2015-01-21 23:50:13 +00:00
|
|
|
// If we're isolating all GPU-bound work to one thread (the default), this function runs all that.
|
|
|
|
static void run_enclave_and_gpu_tests(SkTArray<Task>* tasks) {
|
|
|
|
run_enclave(tasks);
|
|
|
|
for (int i = 0; i < gGPUTests.count(); i++) {
|
|
|
|
run_test(&gGPUTests[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-12 13:28:54 +00:00
|
|
|
// Some runs (mostly, Valgrind) are so slow that the bot framework thinks we've hung.
|
|
|
|
// This prints something every once in a while so that it knows we're still working.
|
2015-03-12 14:16:56 +00:00
|
|
|
static void start_keepalive() {
|
|
|
|
struct Loop {
|
|
|
|
static void forever(void*) {
|
|
|
|
for (;;) {
|
|
|
|
static const int kSec = 300;
|
|
|
|
#if defined(SK_BUILD_FOR_WIN)
|
|
|
|
Sleep(kSec * 1000);
|
|
|
|
#else
|
|
|
|
sleep(kSec);
|
|
|
|
#endif
|
2015-03-18 12:27:14 +00:00
|
|
|
SkString running;
|
|
|
|
{
|
|
|
|
SkAutoMutexAcquire lock(gRunningMutex);
|
|
|
|
for (int i = 0; i < gRunning.count(); i++) {
|
|
|
|
running.appendf("\n\t%s", gRunning[i].c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SkDebugf("\nCurrently running:%s\n", running.c_str());
|
2015-03-12 14:16:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
static SkThread* intentionallyLeaked = new SkThread(Loop::forever);
|
|
|
|
intentionallyLeaked->start();
|
2015-03-12 13:28:54 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 18:15:02 +00:00
|
|
|
int dm_main();
|
|
|
|
int dm_main() {
|
|
|
|
SetupCrashHandler();
|
|
|
|
SkAutoGraphics ag;
|
|
|
|
SkTaskGroup::Enabler enabled(FLAGS_threads);
|
2015-02-02 21:24:37 +00:00
|
|
|
if (FLAGS_leaks) {
|
|
|
|
SkInstCountPrintLeaksOnExit();
|
|
|
|
}
|
2015-01-15 16:30:25 +00:00
|
|
|
|
2015-03-12 14:16:56 +00:00
|
|
|
start_keepalive();
|
2015-03-12 13:28:54 +00:00
|
|
|
|
2015-01-27 22:46:26 +00:00
|
|
|
gather_gold();
|
2015-04-03 21:15:33 +00:00
|
|
|
gather_uninteresting_hashes();
|
2015-01-27 22:46:26 +00:00
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
gather_srcs();
|
|
|
|
gather_sinks();
|
|
|
|
gather_tests();
|
|
|
|
|
2015-01-21 23:50:13 +00:00
|
|
|
gPending = gSrcs.count() * gSinks.count() + gThreadedTests.count() + gGPUTests.count();
|
2015-01-15 18:56:12 +00:00
|
|
|
SkDebugf("%d srcs * %d sinks + %d tests == %d tasks\n",
|
2015-01-21 23:50:13 +00:00
|
|
|
gSrcs.count(), gSinks.count(), gThreadedTests.count() + gGPUTests.count(), gPending);
|
2015-01-15 18:56:12 +00:00
|
|
|
|
|
|
|
// We try to exploit as much parallelism as is safe. Most Src/Sink pairs run on any thread,
|
|
|
|
// but Sinks that identify as part of a particular enclave run serially on a single thread.
|
2015-01-15 20:46:02 +00:00
|
|
|
// CPU tests run on any thread. GPU tests depend on --gpu_threading.
|
2015-01-15 18:56:12 +00:00
|
|
|
SkTArray<Task> enclaves[kNumEnclaves];
|
|
|
|
for (int j = 0; j < gSinks.count(); j++) {
|
|
|
|
SkTArray<Task>& tasks = enclaves[gSinks[j]->enclave()];
|
|
|
|
for (int i = 0; i < gSrcs.count(); i++) {
|
|
|
|
tasks.push_back(Task(gSrcs[i], gSinks[j]));
|
|
|
|
}
|
2014-02-26 23:01:57 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 18:56:12 +00:00
|
|
|
SkTaskGroup tg;
|
2015-01-21 23:50:13 +00:00
|
|
|
tg.batch(run_test, gThreadedTests.begin(), gThreadedTests.count());
|
|
|
|
for (int i = 0; i < kNumEnclaves; i++) {
|
|
|
|
switch(i) {
|
|
|
|
case kAnyThread_Enclave:
|
|
|
|
tg.batch(Task::Run, enclaves[i].begin(), enclaves[i].count());
|
|
|
|
break;
|
|
|
|
case kGPU_Enclave:
|
|
|
|
tg.add(run_enclave_and_gpu_tests, &enclaves[i]);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
tg.add(run_enclave, &enclaves[i]);
|
|
|
|
break;
|
2015-01-15 20:46:02 +00:00
|
|
|
}
|
2015-01-21 23:50:13 +00:00
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
tg.wait();
|
|
|
|
// At this point we're back in single-threaded land.
|
2013-10-16 13:02:15 +00:00
|
|
|
|
2015-01-15 22:20:41 +00:00
|
|
|
SkDebugf("\n");
|
2015-01-15 18:56:12 +00:00
|
|
|
if (gFailures.count() > 0) {
|
|
|
|
SkDebugf("Failures:\n");
|
|
|
|
for (int i = 0; i < gFailures.count(); i++) {
|
2015-01-15 23:47:33 +00:00
|
|
|
SkDebugf("\t%s\n", gFailures[i].c_str());
|
2015-01-15 18:56:12 +00:00
|
|
|
}
|
|
|
|
SkDebugf("%d failures\n", gFailures.count());
|
|
|
|
return 1;
|
2014-12-13 00:41:12 +00:00
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
if (gPending > 0) {
|
|
|
|
SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n");
|
|
|
|
return 1;
|
2014-07-31 12:58:44 +00:00
|
|
|
}
|
2015-01-15 18:56:12 +00:00
|
|
|
return 0;
|
2013-10-16 13:02:15 +00:00
|
|
|
}
|
2014-11-13 16:06:40 +00:00
|
|
|
|
2015-04-02 19:16:36 +00:00
|
|
|
#if !defined(SK_BUILD_FOR_IOS)
|
2014-11-13 16:06:40 +00:00
|
|
|
int main(int argc, char** argv) {
|
|
|
|
SkCommandLineFlags::Parse(argc, argv);
|
|
|
|
return dm_main();
|
|
|
|
}
|
|
|
|
#endif
|