| Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame^] | 1 | |
| 2 | # | ||||
| 3 | # Copyright OpenEmbedded Contributors | ||||
| 4 | # | ||||
| 5 | # SPDX-License-Identifier: MIT | ||||
| 6 | # | ||||
| 7 | |||||
| 8 | from oeqa.selftest.case import OESelftestTestCase | ||||
| 9 | from oeqa.utils.commands import bitbake | ||||
| 10 | |||||
| 11 | class BaremetalTest(OESelftestTestCase): | ||||
| 12 | def test_baremetal(self): | ||||
| 13 | self.write_config('TCLIBC = "baremetal"') | ||||
| 14 | bitbake('baremetal-helloworld') | ||||