Python harness: run tests in both modes by default

This commit is contained in:
Brian Terlson 2015-05-13 18:52:01 -07:00
parent ab44f59d1b
commit 5ce9712be0
1 changed files with 1 additions and 3 deletions

View File

@ -66,9 +66,7 @@ def BuildOptions():
help="Test only strict mode")
result.add_option("--non_strict_only", default=False, action="store_true",
help="Test only non-strict mode")
# TODO: Once enough tests are made strict compat, change the default
# to "both"
result.add_option("--unmarked_default", default="non_strict",
result.add_option("--unmarked_default", default="both",
help="default mode for tests of unspecified strictness")
result.add_option("--logname", help="Filename to save stdout to")
result.add_option("--junitname", help="Filename to save test results in JUnit XML format")