summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/newlib.py
blob: fe57aa51f23183f6d38e9c99d5afda6122417f85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# 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")