summaryrefslogtreecommitdiff
path: root/Test/runTests.py
diff options
context:
space:
mode:
authorGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-06-11 20:15:13 -0700
committerGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-06-11 20:15:13 -0700
commite3df1e20893c90700d3f9a23902ff5220e79994d (patch)
tree373dece4d5ecfc845774607d91aad53bd7f838ac /Test/runTests.py
parentb0b1f8782080528a0ebcaa2bd0fc0c8641b2efdd (diff)
Add missing default parameter in runTests.py
Diffstat (limited to 'Test/runTests.py')
-rw-r--r--Test/runTests.py2
1 files changed, 1 insertions, 1 deletions
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)