diff options
author | jadmanski <jadmanski@592f7852-d20e-0410-864c-8624ca9c26a4> | 2008-05-01 22:05:31 +0000 |
---|---|---|
committer | jadmanski <jadmanski@592f7852-d20e-0410-864c-8624ca9c26a4> | 2008-05-01 22:05:31 +0000 |
commit | 32ef53ce39eaa7afe9dd3c30ea564635b136ea18 (patch) | |
tree | 592a4323d56cc69e6be93b245eb679b7cede18b8 /tko/parsers | |
parent | ead1827901ceb03040c3c96494c89e6756527d8e (diff) |
Run client-side reboots in a test group, and include information
about the kernel booted in the group END logging.
This required enhancing the client-side job code to preserve the
logging indentation across reboots.
Signed-off-by: John Admanski <jadmanski@google.com>
git-svn-id: svn://test.kernel.org/autotest/trunk@1480 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'tko/parsers')
-rw-r--r-- | tko/parsers/version_0.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tko/parsers/version_0.py b/tko/parsers/version_0.py index 7545debc..00adf6f6 100644 --- a/tko/parsers/version_0.py +++ b/tko/parsers/version_0.py @@ -381,6 +381,11 @@ class parser(object): "install, ignoring") continue + # ignore END lines for a reboot group + if (line.testname == "reboot" and line.type == "END"): + tko_utils.dprint("reboot group, ignoring") + continue + # convert job-level ABORTs into a 'JOB' test, and # ignore other job-level events if line.testname is None: |