summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/oetest.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/oetest.py')
-rw-r--r--meta/lib/oeqa/oetest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py
index 4224206546..4773bdd4d8 100644
--- a/meta/lib/oeqa/oetest.py
+++ b/meta/lib/oeqa/oetest.py
@@ -13,7 +13,6 @@ import inspect
13import subprocess 13import subprocess
14import bb 14import bb
15from oeqa.utils.decorators import LogResults 15from oeqa.utils.decorators import LogResults
16from oeqa.targetcontrol import QemuTarget
17from sys import exc_info, exc_clear 16from sys import exc_info, exc_clear
18 17
19def loadTests(tc, type="runtime"): 18def loadTests(tc, type="runtime"):
@@ -124,7 +123,7 @@ class oeRuntimeTest(oeTest):
124 if not exc_info() == (None, None, None): 123 if not exc_info() == (None, None, None):
125 exc_clear() 124 exc_clear()
126 #Only dump for QemuTarget 125 #Only dump for QemuTarget
127 if (isinstance(self.target, QemuTarget)): 126 if (type(self.target).__name__ == "QemuTarget"):
128 self.tc.host_dumper.create_dir(self._testMethodName) 127 self.tc.host_dumper.create_dir(self._testMethodName)
129 self.tc.host_dumper.dump_host() 128 self.tc.host_dumper.dump_host()
130 self.target.target_dumper.dump_target( 129 self.target.target_dumper.dump_target(