summaryrefslogtreecommitdiff
path: root/tko/parse
diff options
context:
space:
mode:
authormbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4>2007-09-30 22:02:02 +0000
committermbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4>2007-09-30 22:02:02 +0000
commit1c2a1a10ffbaec2e776c8153974c49dbeb517e39 (patch)
tree7e82ba10271ecc0f9b6a97689f19064b1fc7d7cb /tko/parse
parent9db4f459e14958f0dd325b429a1600823f3706f4 (diff)
add capability to do vertical text for table headers
Signed-off-by: Martin J. Bligh <mbligh@google.com> git-svn-id: svn://test.kernel.org/autotest/trunk@726 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'tko/parse')
-rwxr-xr-xtko/parse8
1 files changed, 8 insertions, 0 deletions
diff --git a/tko/parse b/tko/parse
index ed38ce63..6942865e 100755
--- a/tko/parse
+++ b/tko/parse
@@ -24,3 +24,11 @@ for j in jobs_list:
for test in job.tests:
print "\t%s %s %s" % (test.subdir, test.status, test.reason)
db.insert_job(j, job)
+
+rows = db.select('distinct machine', 'jobs', {})
+machines = [row[0] for row in rows]
+
+for machine in machines:
+ dir = os.path.dirname(os.path.abspath(sys.argv[0]))
+ vertical_text = os.path.join(dir, 'vertical_text.py')
+ os.system(vertical_text + ' ' + machine)