blob: 999e3e78b08b9d71904f4134097e3994a068fc7d [file] [log] [blame]
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00001#
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")