diff options
author | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2007-09-30 22:02:02 +0000 |
---|---|---|
committer | mbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4> | 2007-09-30 22:02:02 +0000 |
commit | 1c2a1a10ffbaec2e776c8153974c49dbeb517e39 (patch) | |
tree | 7e82ba10271ecc0f9b6a97689f19064b1fc7d7cb /tko/parse | |
parent | 9db4f459e14958f0dd325b429a1600823f3706f4 (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-x | tko/parse | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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) |