blob: 999e3e78b08b9d71904f4134097e3994a068fc7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# SPDX-License-Identifier: MIT
#
from oeqa.selftest.case import OESelftestTestCase
from oeqa.utils.commands import bitbake
class NewlibTest(OESelftestTestCase):
def test_newlib(self):
self.write_config('TCLIBC = "newlib"')
bitbake("newlib libgloss")
|