caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 1 | /* |
| 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" |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 9 | |
tomhudson | eebc39a | 2015-02-23 12:18:05 -0800 | [diff] [blame] | 10 | DEFINE_string(config, "565 8888 gpu nonrendering angle nvprmsaa4 hwui ", |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 11 | "Options: 565 8888 pdf gpu nonrendering msaa4 msaa16 nvprmsaa4 nvprmsaa16 " |
mtklein | 748ca3b | 2015-01-15 10:56:12 -0800 | [diff] [blame] | 12 | "gpudft gpunull gpudebug angle mesa (and many more)"); |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 13 | |
| 14 | DEFINE_bool(cpu, true, "master switch for running CPU-bound work."); |
| 15 | |
| 16 | DEFINE_bool(dryRun, false, |
| 17 | "just print the tests that would be run, without actually running them."); |
| 18 | |
| 19 | DEFINE_bool(gpu, true, "master switch for running GPU-bound work."); |
| 20 | |
| 21 | DEFINE_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 | |
msarett | 95f192d | 2015-02-13 09:05:41 -0800 | [diff] [blame] | 26 | DEFINE_string(images, "resources", "Directory of images to decode."); |
| 27 | |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 28 | DEFINE_bool2(leaks, l, false, "show leaked ref cnt'd objects."); |
| 29 | |
| 30 | DEFINE_string2(match, m, NULL, |
| 31 | "[~][^]substring[$] [...] of GM name to run.\n" |
| 32 | "Multiple matches may be separated by spaces.\n" |
| 33 | "~ causes a matching GM to always be skipped\n" |
| 34 | "^ requires the start of the GM to match\n" |
| 35 | "$ requires the end of the GM to match\n" |
| 36 | "^ and $ requires an exact match\n" |
| 37 | "If a GM does not match any list entry,\n" |
| 38 | "it is skipped unless some list entry starts with ~"); |
| 39 | |
| 40 | DEFINE_bool2(quiet, q, false, "if true, don't print status updates."); |
| 41 | |
joshualitt | 5f5a8d7 | 2015-02-25 14:09:45 -0800 | [diff] [blame^] | 42 | DEFINE_bool(preAbandonGpuContext, false, "Abandons the GrContext before running the test."); |
| 43 | |
mtklein | 55e88b2 | 2015-01-21 15:50:13 -0800 | [diff] [blame] | 44 | DEFINE_bool(abandonGpuContext, false, "Abandon the GrContext after running each test."); |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 45 | |
mtklein | 34580f7 | 2014-08-07 12:46:29 -0700 | [diff] [blame] | 46 | DEFINE_string(skps, "skps", "Directory to read skps from."); |
mtklein | 9200758 | 2014-08-01 07:46:52 -0700 | [diff] [blame] | 47 | |
mtklein | e356c7f | 2014-10-06 11:24:08 -0700 | [diff] [blame] | 48 | DEFINE_int32(threads, -1, "Run threadsafe tests on a threadpool with this many extra threads, " |
| 49 | "defaulting to one extra thread per core."); |
caryclark | 17f0b6d | 2014-07-22 10:15:34 -0700 | [diff] [blame] | 50 | |
| 51 | DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver."); |
| 52 | |
| 53 | DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose."); |
mtklein | b511042 | 2014-08-07 15:20:02 -0700 | [diff] [blame] | 54 | |
| 55 | DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs."); |
mtklein | ea65bfa | 2014-09-09 07:59:46 -0700 | [diff] [blame] | 56 | |
| 57 | DEFINE_string(key, "", |
| 58 | "Space-separated key/value pairs to add to JSON identifying this builder."); |
| 59 | DEFINE_string(properties, "", |
| 60 | "Space-separated key/value pairs to add to JSON identifying this run."); |
| 61 | |