mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
* The error recipe throws an error during compile
* The error-image includes the error recipe
* Initial target is toaster selenium testing
(From OE-Core rev: 1810d4ab3374d833cb4b68388b456dc7ddb3d685)
Signed-off-by: brian avery <avery.brian@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 lines
515 B
BlitzBasic
12 lines
515 B
BlitzBasic
SUMMARY = "Error Test case that fails on do_compile"
|
|
DESCRIPTION = "This generates a compile time error to be used to for testing."
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
EXCLUDE_FROM_WORLD = "1"
|
|
|
|
do_compile() {
|
|
bbfatal "Failing as expected.";
|
|
}
|