Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 1 | from oeqa.selftest.case import OESelftestTestCase |
2 | from oeqa.utils.commands import bitbake | ||||
3 | |||||
4 | class 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) |