Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.20-rc6 10 lines 220 B view raw
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')