0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-27770 Remove other references to EXCLUDE_WITH_ALL_TAGS and

INCLUDE_WITH_ALL_TAGS
This commit is contained in:
Eddie Louie 2017-03-25 16:44:22 -04:00
parent 09a540b1b6
commit 422a7e6ddd
2 changed files with 1 additions and 10 deletions

View File

@ -86,19 +86,12 @@ DBTEST_EXECUTABLE = None
# actually running them).
DRY_RUN = None
# If set, then any jstests that have all of the specified tags will be excluded from the suite(s).
EXCLUDE_WITH_ALL_TAGS = None
# If set, then any jstests that have any of the specified tags will be excluded from the suite(s).
EXCLUDE_WITH_ANY_TAGS = None
# If true, then a test failure or error will cause resmoke.py to exit and not run any more tests.
FAIL_FAST = None
# If set, then only jstests that have all of the specified tags will be run during the jstest
# portion of the suite(s).
INCLUDE_WITH_ALL_TAGS = None
# If set, then only jstests that have at least one of the specified tags will be run during the
# jstest portion of the suite(s).
INCLUDE_WITH_ANY_TAGS = None

View File

@ -302,9 +302,7 @@ def get_suites(values, args):
# Do not change the execution order of the jstests passed as args, unless a tag option is
# specified. If an option is specified, then sort the tests for consistent execution order.
_config.ORDER_TESTS_BY_NAME = any(tag_filter is not None for
tag_filter in (_config.EXCLUDE_WITH_ALL_TAGS,
_config.EXCLUDE_WITH_ANY_TAGS,
_config.INCLUDE_WITH_ALL_TAGS,
tag_filter in (_config.EXCLUDE_WITH_ANY_TAGS,
_config.INCLUDE_WITH_ANY_TAGS))
# No specified config, just use the following, and default the logging and executor.
suite_config = _make_jstests_config(args)