From d04acc95f02036cbb00e460a0d38a227c9301b9b Mon Sep 17 00:00:00 2001 From: Steve Rowe Date: Tue, 19 Jun 2018 19:33:49 -0400 Subject: [PATCH] Actually checkout the tip of the branch instead of just saying we will --- dev-tools/scripts/reproduceJenkinsFailures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-tools/scripts/reproduceJenkinsFailures.py b/dev-tools/scripts/reproduceJenkinsFailures.py index f36513b880e..70f0c43fbde 100644 --- a/dev-tools/scripts/reproduceJenkinsFailures.py +++ b/dev-tools/scripts/reproduceJenkinsFailures.py @@ -253,7 +253,7 @@ def main(): tests[testcase] = oldTests[testcase] if len(tests) > 0: print('\n[repro] Re-testing 100%% failures at the tip of %s' % branchFromLog) - prepareWorkspace(False, branchFromLog) + prepareWorkspace(True, branchFromLog) modules = groupTestsByModule(tests) runTests(config.testIters, modules, tests) failures = printReport(config.testIters, ' at the tip of %s' % branchFromLog)