aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/gmmain.cpp
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-21 17:25:26 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-10-21 17:25:26 +0000
commit00434ec9e8c5f67db8b2dba97aef1b222e9abbb0 (patch)
treeb53ce15abeb6f822c86aeb206b37f8cb77053ae6 /gm/gmmain.cpp
parent8c294900f31d8d032b62182f011019276d27d5d0 (diff)
GM: remove deprecated --ignoreTests flag
BUG=skia:1730 R=borenet@google.com Review URL: https://codereview.chromium.org/27983004 git-svn-id: http://skia.googlecode.com/svn/trunk@11887 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm/gmmain.cpp')
-rw-r--r--gm/gmmain.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/gm/gmmain.cpp b/gm/gmmain.cpp
index 1715faeb63..6719d67aa5 100644
--- a/gm/gmmain.cpp
+++ b/gm/gmmain.cpp
@@ -1425,9 +1425,6 @@ DEFINE_string(ignoreErrorTypes, kDefaultIgnorableErrorTypes.asString(" ").c_str(
DEFINE_string(ignoreFailuresFile, "", "Path to file containing a list of tests for which we "
"should ignore failures.\n"
"The file should list one test per line, except for comment lines starting with #");
-DEFINE_string(ignoreTests, "", "Space delimited list of tests for which we should ignore "
- "failures.\n"
- "DEPRECATED in favor of --ignoreFailuresFile; see bug 1730");
DEFINE_string(match, "", "[~][^]substring[$] [...] of test name to run.\n"
"Multiple matches may be separated by spaces.\n"
"~ causes a matching test to always be skipped\n"
@@ -2062,14 +2059,6 @@ static bool parse_flags_ignore_error_types(ErrorCombination* outErrorTypes) {
static bool parse_flags_ignore_tests(SkTArray<SkString> &ignoreTestSubstrings) {
ignoreTestSubstrings.reset();
- // Parse --ignoreTests
- if (FLAGS_ignoreTests.count() > 0) {
- gm_fprintf(stderr, "you are using deprecated --ignoreTests flag\n");
- for (int i = 0; i < FLAGS_ignoreTests.count(); i++) {
- ignoreTestSubstrings.push_back(SkString(FLAGS_ignoreTests[i]));
- }
- }
-
// Parse --ignoreFailuresFile
for (int i = 0; i < FLAGS_ignoreFailuresFile.count(); i++) {
SkTArray<SkString> linesFromFile;