testsuite: Remove duplicate test
authorLucas De Marchi <lucas.demarchi@intel.com>
Sun, 6 Apr 2014 20:43:19 +0000 (17:43 -0300)
committerLucas De Marchi <lucas.demarchi@intel.com>
Sun, 6 Apr 2014 20:46:45 +0000 (17:46 -0300)
This partially reverts ad7f175 ("Add test for depmod using search dirs
with same prefix"). Testing it twice in the inverted order doesn't
ensure we get the bug with wrong ordering.

As put by Anssi Hannula <anssi@mageia.org>:

So the bug is triggered only if the shorter name is higher-prio _and_
shorter name is traversed first. If the long name is traversed first,
the bug don't trigger with either "search" directive order (and on my
"make check" runs this is the case).

testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/etc/depmod.d/search.conf [deleted file]
testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/correct-modules.dep [deleted file]
testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/foo/md5.ko [deleted file]
testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/foobar/md5.ko [deleted file]
testsuite/test-depmod.c

diff --git a/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/etc/depmod.d/search.conf b/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/etc/depmod.d/search.conf
deleted file mode 100644 (file)
index ddf4064..0000000
+++ /dev/null
@@ -1 +0,0 @@
-search foo foobar built-in
diff --git a/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/correct-modules.dep b/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/correct-modules.dep
deleted file mode 100644 (file)
index 32f0d2a..0000000
+++ /dev/null
@@ -1 +0,0 @@
-foo/md5.ko:
diff --git a/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/foo/md5.ko b/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/foo/md5.ko
deleted file mode 100644 (file)
index b568f47..0000000
Binary files a/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/foo/md5.ko and /dev/null differ
diff --git a/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/foobar/md5.ko b/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/foobar/md5.ko
deleted file mode 100644 (file)
index b568f47..0000000
Binary files a/testsuite/rootfs-pristine/test-depmod/search-order-same-prefix2/lib/modules/4.4.4/foobar/md5.ko and /dev/null differ
index 25c2e9b..5b67348 100644 (file)
@@ -106,33 +106,6 @@ static DEFINE_TEST(depmod_search_order_same_prefix,
                },
        });
 
-#define SEARCH_ORDER_SAME_PREFIX2_ROOTFS TESTSUITE_ROOTFS "test-depmod/search-order-same-prefix2"
-static noreturn int depmod_search_order_same_prefix2(const struct test *t)
-{
-       const char *progname = ABS_TOP_BUILDDIR "/tools/depmod";
-       const char *const args[] = {
-               progname,
-               NULL,
-       };
-
-       test_spawn_prog(progname, args);
-       exit(EXIT_FAILURE);
-}
-static DEFINE_TEST(depmod_search_order_same_prefix2,
-       .description = "check if depmod honor search order in config with same prefi: "
-                       "the same as depmod_search_order_same_prefix, but in inverse order",
-       .config = {
-               [TC_UNAME_R] = "4.4.4",
-               [TC_ROOTFS] = SEARCH_ORDER_SAME_PREFIX2_ROOTFS,
-       },
-       .output = {
-               .files = (const struct keyval[]) {
-                       { SEARCH_ORDER_SAME_PREFIX2_ROOTFS "/lib/modules/4.4.4/correct-modules.dep",
-                         SEARCH_ORDER_SAME_PREFIX2_ROOTFS "/lib/modules/4.4.4/modules.dep" },
-                       { }
-               },
-       });
-
 
 static const struct test *tests[] = {
 #ifdef ENABLE_ZLIB
@@ -140,7 +113,6 @@ static const struct test *tests[] = {
 #endif
        &sdepmod_search_order_simple,
        &sdepmod_search_order_same_prefix,
-       &sdepmod_search_order_same_prefix2,
        NULL,
 };