SkCommonFlags.cpp revision 748ca3bf2d170708f263693e8579e6722389d0ef
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" 9 10DEFINE_string(config, "565 8888 gpu nonrendering angle nvprmsaa4 ", 11 "Options: 565 8888 pdf gpu nonrendering msaa4 msaa16 nvprmsaa4 nvprmsaa16 " 12 "gpudft gpunull gpudebug angle mesa (and many more)"); 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 40DEFINE_bool(resetGpuContext, true, "Reset the GrContext before running each test."); 41DEFINE_bool(abandonGpuContext, false, "Abandon the GrContext after running each test. " 42 "Implies --resetGpuContext."); 43 44DEFINE_string(skps, "skps", "Directory to read skps from."); 45 46DEFINE_int32(threads, -1, "Run threadsafe tests on a threadpool with this many extra threads, " 47 "defaulting to one extra thread per core."); 48 49DEFINE_bool2(verbose, v, false, "enable verbose output from the test driver."); 50 51DEFINE_bool2(veryVerbose, V, false, "tell individual tests to be verbose."); 52 53DEFINE_string2(writePath, w, "", "If set, write bitmaps here as .pngs."); 54 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 60