Add job queued, started and finished timestamps to the tko db and
modify the parsing code to find these timestamps in the job keyval
file and insert them into the db.

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



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1246 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/tko/db.py b/tko/db.py
index 22d05b8..409d086 100644
--- a/tko/db.py
+++ b/tko/db.py
@@ -218,7 +218,10 @@
 		self.insert('jobs', {'tag':tag,
                                      'label': job.label,
                                      'username': job.user,
-		                     'machine_idx':job.machine_idx},
+		                     'machine_idx': job.machine_idx,
+				     'queued_time': job.queued_time,
+				     'started_time': job.started_time,
+				     'finished_time': job.finished_time},
                                      commit=commit)
 		job.index = self.get_last_autonumber_value()
 		for test in job.tests: