Add tests.started_time to the results database, and add support in the
parser for extracting those times.

Signed-off-by: John Admanski <jadmanski@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1453 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/tko/db.py b/tko/db.py
index 7d2345b..5f4925d 100644
--- a/tko/db.py
+++ b/tko/db.py
@@ -286,6 +286,7 @@
 			'subdir':test.subdir, 'kernel_idx':kver,
 			'status':self.status_idx[test.status],
 			'reason':test.reason, 'machine_idx':job.machine_idx,
+			'started_time': test.started_time,
 			'finished_time':test.finished_time}
 		self.insert('tests', data, commit=commit)
 		test_idx = self.get_last_autonumber_value()