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