xref: /openbmc/u-boot/scripts/kconfig/tests/warn_recursive_dep/__init__.py (revision ebb1a593252205114f6133b898f67473cc4c4899)
1"""
2Warn recursive inclusion.
3
4Recursive dependency should be warned.
5"""
6
7def test(conf):
8    assert conf.oldaskconfig() == 0
9    assert conf.stderr_contains('expected_stderr')
10