blob: 6de63310c09d6318a41af466d10a4074dc31b592 [file] [log] [blame]
Andrew Geissler615f2f12022-07-15 14:00:58 -05001from 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)