diff options
| -rw-r--r-- | meta-selftest/recipes-test/poison/poison.bb | 16 | ||||
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/buildoptions.py | 6 |
2 files changed, 22 insertions, 0 deletions
diff --git a/meta-selftest/recipes-test/poison/poison.bb b/meta-selftest/recipes-test/poison/poison.bb new file mode 100644 index 0000000000..7ace901cc3 --- /dev/null +++ b/meta-selftest/recipes-test/poison/poison.bb | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | SUMMARY = "Sysroot poisoning test" | ||
| 2 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | ||
| 3 | |||
| 4 | LICENSE = "MIT" | ||
| 5 | |||
| 6 | inherit nopackages | ||
| 7 | |||
| 8 | # This test confirms that compiling code that searches /usr/include for headers | ||
| 9 | # will result in compiler errors. This recipe should will fail to build and | ||
| 10 | # oe-selftest has a test that verifies that. | ||
| 11 | do_compile() { | ||
| 12 | touch empty.c | ||
| 13 | ${CPP} ${CFLAGS} -I/usr/include empty.c | ||
| 14 | } | ||
| 15 | |||
| 16 | EXCLUDE_FROM_WORLD = "1" | ||
diff --git a/meta/lib/oeqa/selftest/cases/buildoptions.py b/meta/lib/oeqa/selftest/cases/buildoptions.py index 3495bee986..20fe8ed8f6 100644 --- a/meta/lib/oeqa/selftest/cases/buildoptions.py +++ b/meta/lib/oeqa/selftest/cases/buildoptions.py | |||
| @@ -197,3 +197,9 @@ PREMIRRORS = "\\ | |||
| 197 | 197 | ||
| 198 | bitbake("world --runall fetch") | 198 | bitbake("world --runall fetch") |
| 199 | 199 | ||
| 200 | |||
| 201 | class Poisoning(OESelftestTestCase): | ||
| 202 | def test_poisoning(self): | ||
| 203 | res = bitbake("poison", ignore_status=True) | ||
| 204 | self.assertNotEqual(res.status, 0) | ||
| 205 | self.assertTrue("is unsafe for cross-compilation" in res.output) | ||
