From 9631182c22217c2481d0ad62251aed048204dae8 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Sun, 21 Dec 2014 22:56:46 -0500 Subject: [PATCH] Passing arguments in the right order for compute_regressions --- lib/gdbcommand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gdbcommand.py b/lib/gdbcommand.py index f22fd73..c8140a9 100644 --- a/lib/gdbcommand.py +++ b/lib/gdbcommand.py @@ -26,7 +26,7 @@ class GdbCatSumfileCommand(ShellCommand): baseline = parser.read_sum_file(builder, rev) result = SUCCESS if baseline is not None: - report = parser.compute_regressions(cur_results, builder, baseline) + report = parser.compute_regressions(builder, cur_results, baseline) if report is not '': self.addCompleteLog('regressions', report) result = FAILURE