Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: MIT |
| 3 | # |
| 4 | |
| 5 | import uuid |
| 6 | |
| 7 | from oeqa.selftest.case import OESelftestTestCase |
| 8 | from oeqa.utils.commands import bitbake |
| 9 | |
| 10 | class SysrootTests(OESelftestTestCase): |
| 11 | def test_sysroot_cleanup(self): |
| 12 | """ |
| 13 | Build sysroot test which depends on virtual/sysroot-test for one machine, |
| 14 | switch machine, switch provider of virtual/sysroot-test and check that the |
| 15 | sysroot is correctly cleaned up. The files in the two providers overlap |
| 16 | so can cause errors if the sysroot code doesn't function correctly. |
| 17 | Yes, sysroot-test should be machine specific really to avoid this, however |
| 18 | the sysroot cleanup should also work [YOCTO #13702]. |
| 19 | """ |
| 20 | |
| 21 | uuid1 = uuid.uuid4() |
| 22 | uuid2 = uuid.uuid4() |
| 23 | |
| 24 | self.write_config(""" |
| 25 | PREFERRED_PROVIDER_virtual/sysroot-test = "sysroot-test-arch1" |
| 26 | MACHINE = "qemux86" |
| 27 | TESTSTRING_pn-sysroot-test-arch1 = "%s" |
| 28 | TESTSTRING_pn-sysroot-test-arch2 = "%s" |
| 29 | """ % (uuid1, uuid2)) |
| 30 | bitbake("sysroot-test") |
| 31 | self.write_config(""" |
| 32 | PREFERRED_PROVIDER_virtual/sysroot-test = "sysroot-test-arch2" |
| 33 | MACHINE = "qemux86copy" |
| 34 | TESTSTRING_pn-sysroot-test-arch1 = "%s" |
| 35 | TESTSTRING_pn-sysroot-test-arch2 = "%s" |
| 36 | """ % (uuid1, uuid2)) |
| 37 | bitbake("sysroot-test") |