diff options
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/baremetal.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/baremetal.py b/meta/lib/oeqa/selftest/cases/baremetal.py new file mode 100644 index 0000000000..cadaea2f1a --- /dev/null +++ b/meta/lib/oeqa/selftest/cases/baremetal.py | |||
| @@ -0,0 +1,14 @@ | |||
| 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') | ||
