summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/devtool.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/devtool.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/devtool.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index b577f6d62a..c36b1efa78 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -27,6 +27,9 @@ def setUpModule():
27 corecopydir = os.path.join(templayerdir, 'core-copy') 27 corecopydir = os.path.join(templayerdir, 'core-copy')
28 bblayers_conf = os.path.join(os.environ['BUILDDIR'], 'conf', 'bblayers.conf') 28 bblayers_conf = os.path.join(os.environ['BUILDDIR'], 'conf', 'bblayers.conf')
29 edited_layers = [] 29 edited_layers = []
30 # make sure user doesn't have a local workspace
31 result = runCmd('bitbake-layers show-layers')
32 assert "workspacelayer" not in result.output, "Devtool test suite cannot be run with a local workspace directory"
30 33
31 # We need to take a copy of the meta layer so we can modify it and not 34 # We need to take a copy of the meta layer so we can modify it and not
32 # have any races against other tests that might be running in parallel 35 # have any races against other tests that might be running in parallel