summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/baremetal.py
blob: cadaea2f1af5d9020efd48e2c7200055f8b3013d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Copyright OpenEmbedded Contributors
#
# SPDX-License-Identifier: MIT
#

from oeqa.selftest.case import OESelftestTestCase
from oeqa.utils.commands import bitbake

class BaremetalTest(OESelftestTestCase):
    def test_baremetal(self):
        self.write_config('TCLIBC = "baremetal"')
        bitbake('baremetal-helloworld')