Files
OpenBMC/poky/meta/lib/oeqa/selftest/cases/newlib.py
T
2026-04-23 17:07:55 +08:00

14 lines
314 B
Python

#
# Copyright OpenEmbedded Contributors
#
# 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")