mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-28 18:10:32 +00:00

We have stress_03, stress_04 and stress_05 for checking new feature vs. stress IO & device removal & ublk server crash & recovery, so let the three existing stress tests cover PER_IO_DAEMON. Then stress_06 can be removed, since the same test function is included in stress_03. Signed-off-by: Ming Lei <ming.lei@redhat.com> Link: https://lore.kernel.org/r/20250602132113.1398645-1-ming.lei@redhat.com Reviewed-by: Uday Shankar <ushankar@purestorage.com> [axboe: remove test_stress_06.sh from Makefile too] Signed-off-by: Jens Axboe <axboe@kernel.dk>
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
CFLAGS += -O3 -Wl,-no-as-needed -Wall -I $(top_srcdir)/usr/include
|
|
ifneq ($(WERROR),0)
|
|
CFLAGS += -Werror
|
|
endif
|
|
|
|
LDLIBS += -lpthread -lm -luring
|
|
|
|
TEST_PROGS := test_generic_01.sh
|
|
TEST_PROGS += test_generic_02.sh
|
|
TEST_PROGS += test_generic_03.sh
|
|
TEST_PROGS += test_generic_04.sh
|
|
TEST_PROGS += test_generic_05.sh
|
|
TEST_PROGS += test_generic_06.sh
|
|
TEST_PROGS += test_generic_07.sh
|
|
|
|
TEST_PROGS += test_generic_08.sh
|
|
TEST_PROGS += test_generic_09.sh
|
|
TEST_PROGS += test_generic_10.sh
|
|
TEST_PROGS += test_generic_11.sh
|
|
TEST_PROGS += test_generic_12.sh
|
|
|
|
TEST_PROGS += test_null_01.sh
|
|
TEST_PROGS += test_null_02.sh
|
|
TEST_PROGS += test_loop_01.sh
|
|
TEST_PROGS += test_loop_02.sh
|
|
TEST_PROGS += test_loop_03.sh
|
|
TEST_PROGS += test_loop_04.sh
|
|
TEST_PROGS += test_loop_05.sh
|
|
TEST_PROGS += test_stripe_01.sh
|
|
TEST_PROGS += test_stripe_02.sh
|
|
TEST_PROGS += test_stripe_03.sh
|
|
TEST_PROGS += test_stripe_04.sh
|
|
|
|
TEST_PROGS += test_stress_01.sh
|
|
TEST_PROGS += test_stress_02.sh
|
|
TEST_PROGS += test_stress_03.sh
|
|
TEST_PROGS += test_stress_04.sh
|
|
TEST_PROGS += test_stress_05.sh
|
|
|
|
TEST_GEN_PROGS_EXTENDED = kublk
|
|
|
|
include ../lib.mk
|
|
|
|
$(TEST_GEN_PROGS_EXTENDED): kublk.c null.c file_backed.c common.c stripe.c \
|
|
fault_inject.c
|
|
|
|
check:
|
|
shellcheck -x -f gcc *.sh
|