summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/context.py')
-rw-r--r--meta/lib/oeqa/selftest/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py
index 1659926975..78c7a467e2 100644
--- a/meta/lib/oeqa/selftest/context.py
+++ b/meta/lib/oeqa/selftest/context.py
@@ -39,7 +39,7 @@ class NonConcurrentTestSuite(unittest.TestSuite):
39 39
40def removebuilddir(d): 40def removebuilddir(d):
41 delay = 5 41 delay = 5
42 while delay and os.path.exists(d + "/bitbake.lock"): 42 while delay and (os.path.exists(d + "/bitbake.lock") or os.path.exists(d + "/cache/hashserv.db-wal")):
43 time.sleep(1) 43 time.sleep(1)
44 delay = delay - 1 44 delay = delay - 1
45 # Deleting these directories takes a lot of time, use autobuilder 45 # Deleting these directories takes a lot of time, use autobuilder