mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
(From OE-Core rev: 0772b6de9dfbb276845c0a08ebcce41896b8056e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
11 lines
259 B
BlitzBasic
11 lines
259 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"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
EXCLUDE_FROM_WORLD = "1"
|
|
|
|
do_compile() {
|
|
bbfatal "Failing as expected.";
|
|
}
|