blob: c8cd330f59e775ed9ad757680ecfb7b329971a33 [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
bsalomon3b4d0772014-08-06 10:52:33 -070010DEFINE_string(config, "565 8888 pdf gpu nonrendering angle",
caryclark17f0b6d2014-07-22 10:15:34 -070011 "Options: 565 8888 pdf gpu nonrendering msaa4 msaa16 nvprmsaa4 nvprmsaa16 "
12 "gpunull gpudebug angle mesa");
13
14DEFINE_bool(cpu, true, "master switch for running CPU-bound work.");
15
16DEFINE_bool(dryRun, false,
17 "just print the tests that would be run, without actually running them.");
18
19DEFINE_bool(gpu, true, "master switch for running GPU-bound work.");
20
21DEFINE_string(gpuAPI, "", "Force use of specific gpu API. Using \"gl\" "
22 "forces OpenGL API. Using \"gles\" forces OpenGL ES API. "
23 "Defaults to empty string, which selects the API native to the "
24 "system.");
25
26DEFINE_bool2(leaks, l, false, "show leaked ref cnt'd objects.");
27
28DEFINE_string2(match, m, NULL,
29 "[~][^]substring[$] [...] of GM name to run.\n"
30 "Multiple matches may be separated by spaces.\n"
31 "~ causes a matching GM to always be skipped\n"
32 "^ requires the start of the GM to match\n"
33 "$ requires the end of the GM to match\n"
34 "^ and $ requires an exact match\n"
35 "If a GM does not match any list entry,\n"
36 "it is skipped unless some list entry starts with ~");
37
38DEFINE_bool2(quiet, q, false, "if true, don't print status updates.");
39
bsalomon2354f842014-07-28 13:48:36 -070040DEFINE_bool(resetGpuContext, true, "Reset the GrContext before running each test.");
41DEFINE_bool(abandonGpuContext, false, "Abandon the GrContext after running each test. "
42 "Implies --resetGpuContext.");
caryclark17f0b6d2014-07-22 10:15:34 -070043
mtklein34580f72014-08-07 12:46:29 -070044DEFINE_string(skps, "skps", "Directory to read skps from.");
mtklein92007582014-08-01 07:46:52 -070045
mtklein406654b2014-09-03 15:34:37 -070046DEFINE_int32(threads, 0, "Run threadsafe tests on a threadpool with this many threads, "
47 "defaulting to one thread per core.");
caryclark17f0b6d2014-07-22 10:15:34 -070048
49DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver.");
50
51DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose.");
mtkleinb5110422014-08-07 15:20:02 -070052
53DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs.");
mtkleinea65bfa2014-09-09 07:59:46 -070054
55DEFINE_string(key, "",
56 "Space-separated key/value pairs to add to JSON identifying this builder.");
57DEFINE_string(properties, "",
58 "Space-separated key/value pairs to add to JSON identifying this run.");
59