summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/devtool.py
diff options
context:
space:
mode:
authorJoshua Lock <joshua.g.lock@intel.com>2017-03-27 11:21:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-27 20:22:51 +0100
commit58a02e73d0a6b110d96e94033e1fdf634b42ccec (patch)
tree1d13cb5f9eaef7c999f16ac422b6d6c386e74a3a /meta/lib/oeqa/selftest/devtool.py
parent8fdbf9fcf28569de42c2c8d902b93a3ff4d28219 (diff)
downloadpoky-58a02e73d0a6b110d96e94033e1fdf634b42ccec.tar.gz
oeqa/selftest: don't use cleanall in selftests
* devtool: oeqa.selftest.devtool.DevtoolTests is taking 4 or more hours on the autobuilder because the cleanall call deletes the tarball of the kernel source, forcing a large clone which is especially long on an NFS mount. The cleanall invocation isn't really required here and switching to clean instead should avoid hours of re-cloning the same repository each time we run oe-selftest on the autobuilder. * buildoptions: We only need to ensure the first image isn't an incremental image, clean will suffice here. * runtime-test: no need to clean up the artefacts generated during the test, let's leave that to a higher level process rather than using the cleanall hammer. (From OE-Core rev: 9c948d3de08f158387e08a17cdc0cedc7d26bb54) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/devtool.py')
-rw-r--r--meta/lib/oeqa/selftest/devtool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py
index a160c8328c..7f9efe6368 100644
--- a/meta/lib/oeqa/selftest/devtool.py
+++ b/meta/lib/oeqa/selftest/devtool.py
@@ -1654,7 +1654,7 @@ class DevtoolTests(DevtoolBase):
1654 1654
1655 tmpconfig = os.path.join(buildir, '.config') 1655 tmpconfig = os.path.join(buildir, '.config')
1656 #Step 3 1656 #Step 3
1657 bitbake('linux-yocto -c cleanall') 1657 bitbake('linux-yocto -c clean')
1658 #Step 4.1 1658 #Step 4.1
1659 runCmd('devtool modify virtual/kernel -x %s' % tempdir) 1659 runCmd('devtool modify virtual/kernel -x %s' % tempdir)
1660 self.assertTrue(os.path.exists(os.path.join(tempdir, 'Makefile')), 1660 self.assertTrue(os.path.exists(os.path.join(tempdir, 'Makefile')),