Skip to content

Commit d9a36ab

Browse files
Ming Leiaxboe
authored andcommitted
selftests: ublk: reorganize tests into integrity and recover groups
Move integrity-focused tests into new 'integrity' group: - test_null_04.sh -> test_integrity_01.sh - test_loop_08.sh -> test_integrity_02.sh Move recovery-focused tests into new 'recover' group: - test_generic_04.sh -> test_recover_01.sh - test_generic_05.sh -> test_recover_02.sh - test_generic_11.sh -> test_recover_03.sh - test_generic_14.sh -> test_recover_04.sh Update Makefile to reflect the reorganization. Signed-off-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
1 parent 56a08b8 commit d9a36ab

7 files changed

Lines changed: 8 additions & 6 deletions

File tree

tools/testing/selftests/ublk/Makefile

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,14 @@ LDLIBS += -lpthread -lm -luring
1010
TEST_PROGS := test_generic_01.sh
1111
TEST_PROGS += test_generic_02.sh
1212
TEST_PROGS += test_generic_03.sh
13-
TEST_PROGS += test_generic_04.sh
14-
TEST_PROGS += test_generic_05.sh
1513
TEST_PROGS += test_generic_06.sh
1614
TEST_PROGS += test_generic_07.sh
1715

1816
TEST_PROGS += test_generic_08.sh
1917
TEST_PROGS += test_generic_09.sh
2018
TEST_PROGS += test_generic_10.sh
21-
TEST_PROGS += test_generic_11.sh
2219
TEST_PROGS += test_generic_12.sh
2320
TEST_PROGS += test_generic_13.sh
24-
TEST_PROGS += test_generic_14.sh
2521
TEST_PROGS += test_generic_16.sh
2622

2723
TEST_PROGS += test_batch_01.sh
@@ -31,15 +27,21 @@ TEST_PROGS += test_batch_03.sh
3127
TEST_PROGS += test_null_01.sh
3228
TEST_PROGS += test_null_02.sh
3329
TEST_PROGS += test_null_03.sh
34-
TEST_PROGS += test_null_04.sh
3530
TEST_PROGS += test_loop_01.sh
3631
TEST_PROGS += test_loop_02.sh
3732
TEST_PROGS += test_loop_03.sh
3833
TEST_PROGS += test_loop_04.sh
3934
TEST_PROGS += test_loop_05.sh
4035
TEST_PROGS += test_loop_06.sh
4136
TEST_PROGS += test_loop_07.sh
42-
TEST_PROGS += test_loop_08.sh
37+
38+
TEST_PROGS += test_integrity_01.sh
39+
TEST_PROGS += test_integrity_02.sh
40+
41+
TEST_PROGS += test_recover_01.sh
42+
TEST_PROGS += test_recover_02.sh
43+
TEST_PROGS += test_recover_03.sh
44+
TEST_PROGS += test_recover_04.sh
4345
TEST_PROGS += test_stripe_01.sh
4446
TEST_PROGS += test_stripe_02.sh
4547
TEST_PROGS += test_stripe_03.sh
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)