diff options
-rw-r--r-- | meta/lib/oeqa/runtime/parselogs.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index e20947b8bc..e2dd3eb2c0 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py | |||
@@ -233,8 +233,7 @@ class ParseLogsTest(oeRuntimeTest): | |||
233 | 233 | ||
234 | #get the output of dmesg and write it in a file. This file is added to log_locations. | 234 | #get the output of dmesg and write it in a file. This file is added to log_locations. |
235 | def write_dmesg(self): | 235 | def write_dmesg(self): |
236 | (status, dmesg) = self.target.run("dmesg") | 236 | (status, dmesg) = self.target.run("dmesg > /tmp/dmesg_output.log") |
237 | (status, dmesg2) = self.target.run("echo \""+str(dmesg)+"\" > /tmp/dmesg_output.log") | ||
238 | 237 | ||
239 | @testcase(1059) | 238 | @testcase(1059) |
240 | @skipUnlessPassed('test_ssh') | 239 | @skipUnlessPassed('test_ssh') |