rpmtests.py 303 B

1234567891011121314
  1. #
  2. # Copyright OpenEmbedded Contributors
  3. #
  4. # SPDX-License-Identifier: MIT
  5. #
  6. from oeqa.selftest.case import OESelftestTestCase
  7. from oeqa.utils.commands import bitbake
  8. class BitbakeTests(OESelftestTestCase):
  9. def test_rpm_filenames(self):
  10. test_recipe = "testrpm"
  11. bitbake(test_recipe)