blob: fe57aa51f23183f6d38e9c99d5afda6122417f85 [file] [log] [blame]
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00001#
Patrick Williams92b42cb2022-09-03 06:53:57 -05002# Copyright OpenEmbedded Contributors
3#
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00004# SPDX-License-Identifier: MIT
5#
6
7from oeqa.selftest.case import OESelftestTestCase
8from oeqa.utils.commands import bitbake
9
10class NewlibTest(OESelftestTestCase):
11 def test_newlib(self):
12 self.write_config('TCLIBC = "newlib"')
13 bitbake("newlib libgloss")