1from oeqa.selftest.case import OESelftestTestCase
2from oeqa.utils.commands import bitbake
3
4class WrapperTests(OESelftestTestCase):
5    def test_shebang_wrapper(self):
6        """
7        Summary:   Build a recipe which will fail if the cmdline_shebang_wrapper function is defective.
8        Expected:  Exit status to be 0.
9        Author:    Paulo Neves <ptsneves@gmail.com>
10        """
11        res = bitbake("cmdline-shebang-wrapper-test -c install", ignore_status=False)
12