Message ID | 20230108191525.1312582-3-alejandro@enedino.org |
---|---|
State | New |
Headers | show |
Series | [1/3] baremetal-helloworld: Enable x86 and x86-64 ports | expand |
diff --git a/meta/lib/oeqa/selftest/cases/baremetal.py b/meta/lib/oeqa/selftest/cases/baremetal.py new file mode 100644 index 0000000000..3f70feebad --- /dev/null +++ b/meta/lib/oeqa/selftest/cases/baremetal.py @@ -0,0 +1,13 @@ + +# +# Copyright OpenEmbedded Contributors +# +# SPDX-License-Identifier: MIT +# + +from oeqa.selftest.case import OESelftestTestCase +from oeqa.utils.commands import bitbake + +class BaremetalTest(OESelftestTestCase): + self.write_config('TCLIBC = "baremetal"') + bitbake('baremetal-helloworld')
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> --- meta/lib/oeqa/selftest/cases/baremetal.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 meta/lib/oeqa/selftest/cases/baremetal.py