xref: /OK3568_Linux_fs/yocto/poky/meta-selftest/recipes-test/error/error.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593SmuzhiyunSUMMARY = "Error Test case that fails on do_compile"
2*4882a593SmuzhiyunDESCRIPTION = "This generates a compile time error to be used to for testing."
3*4882a593SmuzhiyunLICENSE = "MIT"
4*4882a593Smuzhiyun
5*4882a593SmuzhiyunINHIBIT_DEFAULT_DEPS = "1"
6*4882a593SmuzhiyunEXCLUDE_FROM_WORLD = "1"
7*4882a593Smuzhiyun
8*4882a593Smuzhiyundo_compile() {
9*4882a593Smuzhiyun        bbfatal "Failing as expected.";
10*4882a593Smuzhiyun}
11