Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 1 | # |
2 | # SPDX-License-Identifier: MIT | ||||
3 | # | ||||
4 | |||||
5 | from oeqa.selftest.case import OESelftestTestCase | ||||
6 | from oeqa.utils.commands import bitbake | ||||
7 | |||||
8 | class NewlibTest(OESelftestTestCase): | ||||
9 | def test_newlib(self): | ||||
10 | self.write_config('TCLIBC = "newlib"') | ||||
11 | bitbake("newlib libgloss") |