diff --git a/buildscripts/burn_in_tests.py b/buildscripts/burn_in_tests.py
|
index cae3ee9bac..0bb0aae000 100644
|
--- a/buildscripts/burn_in_tests.py
|
+++ b/buildscripts/burn_in_tests.py
|
@@ -146,7 +146,7 @@ def find_changed_tests(branch_name, base_commit, max_revisions, buildvariant, ch
|
# activated.
|
revs_to_check = callo(["git", "rev-list", base_commit, "--max-count=200",
|
"--skip=1"]).splitlines()
|
- last_activated = find_last_activated_task(revs_to_check, buildvariant, branch_name)
|
+ last_activated = "7a7baa2539ec169335086e45c7d0b85ba7cdb877"
|
if last_activated is None:
|
# When the current commit is the first time 'buildvariant' has run, there won't be a
|
# commit among 'revs_to_check' that's been activated in Evergreen. We handle this by
|
@@ -282,6 +282,8 @@ def create_task_list(evergreen_conf, buildvariant, suites, exclude_tasks):
|
resmoke_args = task.combined_resmoke_args
|
if resmoke_args:
|
variant_task_args[task.name] = resmoke_args
|
+ else:
|
+ print '@@@ skipping task', task.name
|
|
# Create the list of tasks to run for the specified suite.
|
tasks_to_run = {}
|
@@ -363,6 +365,7 @@ def main():
|
values.buildvariant, values.check_evergreen)
|
exclude_suites, exclude_tasks, exclude_tests = find_exclude_tests(values.selector_file)
|
changed_tests = filter_tests(changed_tests, exclude_tests)
|
+ print '@@@ changed_tests', changed_tests
|
# If there are no changed tests, exit cleanly.
|
if not changed_tests:
|
print "No new or modified tests found."
|
@@ -372,8 +375,10 @@ def main():
|
suites = resmokelib.suitesconfig.get_suites(
|
suite_files=values.suite_files.split(","), test_files=changed_tests)
|
tests_by_executor = create_executor_list(suites, exclude_suites)
|
+ print '@@@ tests_by_executor', tests_by_executor
|
tests_by_task = create_task_list(evergreen_conf, values.buildvariant, tests_by_executor,
|
exclude_tasks)
|
+ print '@@@ tests_by_task', tests_by_task
|
if values.test_list_outfile is not None:
|
_write_report_file(tests_by_task, values.test_list_outfile)
|
|