blob: a2da1314fc637575764703f2ff0cdd8de524e2ee [file] [log] [blame]
caryclark17f0b6d2014-07-22 10:15:34 -07001/*
2 * Copyright 2014 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
8#include "SkCommonFlags.h"
caryclark17f0b6d2014-07-22 10:15:34 -07009
caryclark17f0b6d2014-07-22 10:15:34 -070010DEFINE_bool(cpu, true, "master switch for running CPU-bound work.");
11
12DEFINE_bool(dryRun, false,
13 "just print the tests that would be run, without actually running them.");
14
15DEFINE_bool(gpu, true, "master switch for running GPU-bound work.");
16
bsalomon73bb4352015-06-30 09:38:35 -070017DEFINE_string(images, "", "Directory of images to decode.");
msarett95f192d2015-02-13 09:05:41 -080018
halcanary96fcdcc2015-08-27 07:41:13 -070019DEFINE_string2(match, m, nullptr,
caryclark17f0b6d2014-07-22 10:15:34 -070020 "[~][^]substring[$] [...] of GM name to run.\n"
21 "Multiple matches may be separated by spaces.\n"
22 "~ causes a matching GM to always be skipped\n"
23 "^ requires the start of the GM to match\n"
24 "$ requires the end of the GM to match\n"
25 "^ and $ requires an exact match\n"
26 "If a GM does not match any list entry,\n"
27 "it is skipped unless some list entry starts with ~");
28
29DEFINE_bool2(quiet, q, false, "if true, don't print status updates.");
30
joshualitt5f5a8d72015-02-25 14:09:45 -080031DEFINE_bool(preAbandonGpuContext, false, "Abandons the GrContext before running the test.");
32
mtklein55e88b22015-01-21 15:50:13 -080033DEFINE_bool(abandonGpuContext, false, "Abandon the GrContext after running each test.");
caryclark17f0b6d2014-07-22 10:15:34 -070034
mtklein34580f72014-08-07 12:46:29 -070035DEFINE_string(skps, "skps", "Directory to read skps from.");
mtklein92007582014-08-01 07:46:52 -070036
mtkleine356c7f2014-10-06 11:24:08 -070037DEFINE_int32(threads, -1, "Run threadsafe tests on a threadpool with this many extra threads, "
38 "defaulting to one extra thread per core.");
caryclark17f0b6d2014-07-22 10:15:34 -070039
40DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver.");
41
42DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose.");
mtkleinb5110422014-08-07 15:20:02 -070043
44DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs.");
mtkleinea65bfa2014-09-09 07:59:46 -070045
46DEFINE_string(key, "",
47 "Space-separated key/value pairs to add to JSON identifying this builder.");
48DEFINE_string(properties, "",
49 "Space-separated key/value pairs to add to JSON identifying this run.");
50