diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2017-05-26 13:59:32 -0400 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2017-05-26 13:59:32 -0400 |
commit | b6c1b6b6a9bfe17d3c21d87ee8516e069dadfa3c (patch) | |
tree | e05d63a53f72e96cf0456b7bb612eee69b8584ec /buildscripts/resmoke.py | |
parent | 90fd8a19000b5f96983f068e6380c1f6bd824b69 (diff) | |
download | mongo-b6c1b6b6a9bfe17d3c21d87ee8516e069dadfa3c.tar.gz |
SERVER-28302 resmoke.py parser should accept files that don't end in .js
Diffstat (limited to 'buildscripts/resmoke.py')
-rwxr-xr-x | buildscripts/resmoke.py | 94 |
1 files changed, 47 insertions, 47 deletions
diff --git a/buildscripts/resmoke.py b/buildscripts/resmoke.py index b6d11785030..c01baf91322 100755 --- a/buildscripts/resmoke.py +++ b/buildscripts/resmoke.py @@ -27,51 +27,50 @@ def _execute_suite(suite): logger = resmokelib.logging.loggers.EXECUTOR_LOGGER - for group in suite.test_groups: - if resmokelib.config.SHUFFLE: - logger.info("Shuffling order of tests for %ss in suite %s. The seed is %d.", - group.test_kind, suite.get_name(), resmokelib.config.RANDOM_SEED) - random.seed(resmokelib.config.RANDOM_SEED) - random.shuffle(group.tests) - - if resmokelib.config.DRY_RUN == "tests": - sb = [] - sb.append("Tests that would be run for %ss in suite %s:" - % (group.test_kind, suite.get_name())) - if len(group.tests) > 0: - for test in group.tests: - sb.append(test) - else: - sb.append("(no tests)") - logger.info("\n".join(sb)) - - # Set a successful return code on the test group because we want to output the tests - # that would get run by any other suites the user specified. - group.return_code = 0 - continue - - if len(group.tests) == 0: - logger.info("Skipping %ss, no tests to run", group.test_kind) - continue - - group_config = suite.get_executor_config().get(group.test_kind, {}) - executor = resmokelib.testing.executor.TestGroupExecutor(logger, - group, - **group_config) - - try: - executor.run() - if resmokelib.config.FAIL_FAST and group.return_code != 0: - suite.return_code = group.return_code - return False - except resmokelib.errors.UserInterrupt: - suite.return_code = 130 # Simulate SIGINT as exit code. - return True - except: - logger.exception("Encountered an error when running %ss of suite %s.", - group.test_kind, suite.get_name()) - suite.return_code = 2 + if resmokelib.config.SHUFFLE: + logger.info("Shuffling order of tests for %ss in suite %s. The seed is %d.", + suite.test_group.test_kind, suite.get_name(), resmokelib.config.RANDOM_SEED) + random.seed(resmokelib.config.RANDOM_SEED) + random.shuffle(suite.test_group.tests) + + if resmokelib.config.DRY_RUN == "tests": + sb = [] + sb.append("Tests that would be run for %ss in suite %s:" + % (suite.test_group.test_kind, suite.get_name())) + if len(suite.test_group.tests) > 0: + for test in suite.test_group.tests: + sb.append(test) + else: + sb.append("(no tests)") + logger.info("\n".join(sb)) + + # Set a successful return code on the test group because we want to output the tests + # that would get run by any other suites the user specified. + suite.test_group.return_code = 0 + return True + + if len(suite.test_group.tests) == 0: + logger.info("Skipping %ss, no tests to run", suite.test_group.test_kind) + return True + + group_config = suite.get_executor_config() + executor = resmokelib.testing.executor.TestGroupExecutor(logger, + suite.test_group, + **group_config) + + try: + executor.run() + if resmokelib.config.FAIL_FAST and suite.test_group.return_code != 0: + suite.return_code = suite.test_group.return_code return False + except resmokelib.errors.UserInterrupt: + suite.return_code = 130 # Simulate SIGINT as exit code. + return True + except: + logger.exception("Encountered an error when running %ss of suite %s.", + suite.test_group.test_kind, suite.get_name()) + suite.return_code = 2 + return False def _log_summary(logger, suites, time_taken): @@ -103,6 +102,8 @@ def _dump_suite_config(suite, logging_config): sb = [] sb.append("YAML configuration of suite %s" % (suite.get_name())) + sb.append(resmokelib.utils.dump_yaml({"test_kind": suite.get_test_kind_config()})) + sb.append("") sb.append(resmokelib.utils.dump_yaml({"selector": suite.get_selector_config()})) sb.append("") sb.append(resmokelib.utils.dump_yaml({"executor": suite.get_executor_config()})) @@ -120,9 +121,8 @@ def find_suites_by_test(suites): memberships = {} test_membership = resmokelib.parser.create_test_membership_map() for suite in suites: - for group in suite.test_groups: - for test in group.tests: - memberships[test] = test_membership[test] + for test in suite.test_group.tests: + memberships[test] = test_membership[test] return memberships |