diff options
author | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2007-09-20 18:32:25 +0000 |
---|---|---|
committer | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2007-09-20 18:32:25 +0000 |
commit | b85c31803fb4217b0e813248e15c3ba85fcea38b (patch) | |
tree | da449e257afdc27bbcc6216b9b7b843b2617899b /tko/parse | |
parent | 2d9fec8dea923728fe666c70336db0ba88fadb0b (diff) |
add iterations from keyval properly when parsing
Signed-off-by: Martin J. Bligh <mbligh@google.com>
git-svn-id: svn://test.kernel.org/autotest/trunk@679 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'tko/parse')
-rwxr-xr-x | tko/parse | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ topdir = sys.argv[1] jobs_list = os.listdir(topdir) jobs = {} -db = db.db(True) +db = db.db() for j in jobs_list: print 'looking for ' + j @@ -22,5 +22,5 @@ for j in jobs_list: continue print '%s %s' % (j, job.kernel.base) for test in job.tests: - print "\t%s %s %s" % (test.dir, test.status, test.reason) + print "\t%s %s %s" % (test.subdir, test.status, test.reason) db.insert_job(j, job) |