summaryrefslogtreecommitdiff
path: root/programs/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'programs/run.py')
-rwxr-xr-xprograms/run.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/programs/run.py b/programs/run.py
index e0cbb99..c1f4a34 100755
--- a/programs/run.py
+++ b/programs/run.py
@@ -79,9 +79,12 @@ def main(argv, config):
db = ResultDatabase(config)
# Create test run in database
- db.createRun(args.name, 'driver', 'system')
+ runID = db.createRun(args.name, 'driver', 'system')
# Populate results with "not run yet"
+ for test in tests.keys():
+ db.addPlaceholderResult(runID, test)
+
# Resume
if __name__ == '__main__':