xref: /openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/__init__.py (revision 407b5b956a2e0facf6668fc8b295f4be9205c83e)
1"""
2Detect recursive inclusion error.
3
4If recursive inclusion is detected, it should fail with error messages.
5"""
6
7
8def test(conf):
9    assert conf.oldaskconfig() != 0
10    assert conf.stderr_contains('expected_stderr')
11