Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame^] | 1 | # |
2 | # Copyright OpenEmbedded Contributors | ||||
3 | # | ||||
4 | # SPDX-License-Identifier: MIT | ||||
5 | # | ||||
6 | |||||
7 | from oeqa.selftest.case import OESelftestTestCase | ||||
8 | from oeqa.utils.commands import bitbake | ||||
9 | |||||
10 | class BitbakeTests(OESelftestTestCase): | ||||
11 | |||||
12 | def test_rpm_filenames(self): | ||||
13 | test_recipe = "testrpm" | ||||
14 | bitbake(test_recipe) |