From aff7e7261176b2d37a259e37164735d1baa2f709 Mon Sep 17 00:00:00 2001 From: brian avery Date: Mon, 21 Sep 2015 16:45:55 -0700 Subject: meta-selftest: add error recipe and error-image * 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 Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta-selftest/recipes-test/error/error.bb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 meta-selftest/recipes-test/error/error.bb (limited to 'meta-selftest/recipes-test/error') diff --git a/meta-selftest/recipes-test/error/error.bb b/meta-selftest/recipes-test/error/error.bb new file mode 100644 index 0000000000..a7bdecf29d --- /dev/null +++ b/meta-selftest/recipes-test/error/error.bb @@ -0,0 +1,11 @@ +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."; +} -- cgit 1.2.3-korg