diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-03-13 18:27:06 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-20 11:27:48 +0000 |
commit | a976d63ae5ccf0d27b8dd9a332a9406794c093cc (patch) | |
tree | 356648a19322012d8de23876174da5e6af2b6a0d /meta-selftest/recipes-test/images | |
parent | a0b774e43ff5d952647fdcf412c9639d4e484ce1 (diff) | |
download | poky-a976d63ae5ccf0d27b8dd9a332a9406794c093cc.tar.gz |
oe-selftest: add a test for devtool deploy-target
Whilst this test would seemingly be better placed as a runtime test,
unfortunately the runtime tests run under bitbake and you can't run
devtool within bitbake (since devtool needs to run bitbake itself).
Additionally we are testing build-time functionality as well, so
really this has to be done as an oe-selftest test.
This test does have a few perhaps unusual requirements in order to run:
* pexpect is installed
* MACHINE is set to one of the qemu machines
* runqemu tap devices have been set up
(From OE-Core rev: 9dc16a8a87bef5dc408aefb256c01e2a4fe3563c)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest/recipes-test/images')
-rw-r--r-- | meta-selftest/recipes-test/images/oe-selftest-image.bb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meta-selftest/recipes-test/images/oe-selftest-image.bb b/meta-selftest/recipes-test/images/oe-selftest-image.bb new file mode 100644 index 0000000000..f17094c5d0 --- /dev/null +++ b/meta-selftest/recipes-test/images/oe-selftest-image.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | SUMMARY = "An image used during oe-selftest tests" | ||
2 | |||
3 | IMAGE_INSTALL = "packagegroup-core-boot ${ROOTFS_PKGMANAGE_BOOTSTRAP} dropbear" | ||
4 | IMAGE_FEATURES = "debug-tweaks" | ||
5 | |||
6 | IMAGE_LINGUAS = " " | ||
7 | |||
8 | inherit core-image | ||
9 | |||