xref: /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/newlib.py (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#
2# SPDX-License-Identifier: MIT
3#
4
5from oeqa.selftest.case import OESelftestTestCase
6from oeqa.utils.commands import bitbake
7
8class NewlibTest(OESelftestTestCase):
9    def test_newlib(self):
10        self.write_config('TCLIBC = "newlib"')
11        bitbake("newlib libgloss")
12