From 7a2d0e6187b37d3f7f5f5153018695d35740afa2 Mon Sep 17 00:00:00 2001 From: Lucas De Marchi Date: Fri, 30 May 2014 10:26:17 -0300 Subject: [PATCH] testsuite: check for correct error message in detect-loop --- .../rootfs-pristine/test-depmod/detect-loop/correct.txt | 3 +++ testsuite/test-depmod.c | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 testsuite/rootfs-pristine/test-depmod/detect-loop/correct.txt diff --git a/testsuite/rootfs-pristine/test-depmod/detect-loop/correct.txt b/testsuite/rootfs-pristine/test-depmod/detect-loop/correct.txt new file mode 100644 index 0000000..753e7c5 --- /dev/null +++ b/testsuite/rootfs-pristine/test-depmod/detect-loop/correct.txt @@ -0,0 +1,3 @@ +depmod: ERROR: Found 5 modules in dependency cycles! +depmod: ERROR: Cycle detected: moduleE -> moduleD -> moduleE +depmod: ERROR: Cycle detected: moduleB -> moduleC -> moduleA -> moduleB diff --git a/testsuite/test-depmod.c b/testsuite/test-depmod.c index c5caec4..ae53753 100644 --- a/testsuite/test-depmod.c +++ b/testsuite/test-depmod.c @@ -125,8 +125,9 @@ static DEFINE_TEST(depmod_detect_loop, [TC_ROOTFS] = DETECT_LOOP_ROOTFS, }, .expected_fail = true, - ); - + .output = { + .err = DETECT_LOOP_ROOTFS "/correct.txt", + }); static const struct test *tests[] = {