Instead of removing the test completely, use the new skip infra to skip that test. --- testsuite/test-depmod.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/test-depmod.c b/testsuite/test-depmod.c index 261559c..d52602d 100644 --- a/testsuite/test-depmod.c +++ b/testsuite/test-depmod.c @@ -25,7 +25,6 @@ #include "testsuite.h" -#ifdef ENABLE_ZLIB #define MODULES_ORDER_UNAME "4.4.4" #define MODULES_ORDER_ROOTFS TESTSUITE_ROOTFS "test-depmod/modules-order-compressed" #define MODULES_ORDER_LIB_MODULES MODULES_ORDER_ROOTFS "/lib/modules/" MODULES_ORDER_UNAME @@ -42,7 +41,8 @@ static noreturn int depmod_modules_order_for_compressed(const struct test *t) } DEFINE_TEST(depmod_modules_order_for_compressed, -#if defined(KMOD_SYSCONFDIR_NOT_ETC) +#if defined(KMOD_SYSCONFDIR_NOT_ETC) || \ + !defined(ENABLE_ZLIB) .skip = true, #endif .description = "check if depmod let aliases in right order when using compressed modules", -- 2.30.0