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