summaryrefslogtreecommitdiff
path: root/programs
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2012-11-25 13:57:49 -0800
committerKenneth Graunke <kenneth@whitecape.org>2012-11-25 14:01:13 -0800
commit9d1c768f04d982eed8449bc7799896dfa7e94fc3 (patch)
tree27ef7f8e45de0f292e46ab6c40d21b6dec799ed0 /programs
parentcbefc55921e19125acbc155593d3acfa77a4b507 (diff)
initial runner code
finds placeholders and prints them
Diffstat (limited to 'programs')
-rwxr-xr-xprograms/run.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/programs/run.py b/programs/run.py
index 69a1ae1..e436847 100755
--- a/programs/run.py
+++ b/programs/run.py
@@ -32,6 +32,7 @@ import os.path as path
import sys
from framework.database import ResultDatabase
+from framework.runner import resume
import suites
def parseArguments(argv, config):
@@ -84,7 +85,8 @@ def main(argv, config):
# Populate results with "not run yet"
db.addPlaceholderResults(runID, tests.keys())
- # Resume
+ # "Resume" the new test run
+ resume(db, config, args, tests, runID)
if __name__ == '__main__':
main(sys.argv[1:])