summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/sdkext/testsdk.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oeqa/sdkext/testsdk.py b/meta/lib/oeqa/sdkext/testsdk.py
index c5c46df6cd..ffd185ec55 100644
--- a/meta/lib/oeqa/sdkext/testsdk.py
+++ b/meta/lib/oeqa/sdkext/testsdk.py
@@ -99,6 +99,9 @@ class TestSDKExt(TestSDKBase):
99 if not result.wasSuccessful(): 99 if not result.wasSuccessful():
100 fail = True 100 fail = True
101 101
102 # Clean the workspace/sources to avoid `devtool add' failure because of non-empty source directory
103 bb.utils.remove(sdk_dir+'workspace/sources', True)
104
102 if fail: 105 if fail:
103 bb.fatal("%s - FAILED - check the task log and the commands log" % pn) 106 bb.fatal("%s - FAILED - check the task log and the commands log" % pn)
104 107