From e3df1e20893c90700d3f9a23902ff5220e79994d Mon Sep 17 00:00:00 2001 From: Clément Pit--Claudel Date: Thu, 11 Jun 2015 20:15:13 -0700 Subject: Add missing default parameter in runTests.py --- Test/runTests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Test/runTests.py') diff --git a/Test/runTests.py b/Test/runTests.py index 5b2050a7..df233a94 100644 --- a/Test/runTests.py +++ b/Test/runTests.py @@ -80,7 +80,7 @@ class TestStatus(Enum): class Test: COLUMNS = ["name", "status", "start", "end", "duration", "returncodes", "suite_time", "njobs", "proc_info", "source_path", "temp_directory", "cmds", "expected", "output"] - def __init__(self, name, source_path, cmds, timeout, compiler_id): + def __init__(self, name, source_path, cmds, timeout, compiler_id = 0): self.name = name self.source_path = source_path self.expect_path = Test.source_to_expect_path(self.source_path) -- cgit v1.2.3