Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: ublk: make test_generic_06 silent on success

Convention dictates that tests should not log anything on success. Make
test_generic_06 follow this convention.

Signed-off-by: Uday Shankar <ushankar@purestorage.com>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Link: https://lore.kernel.org/r/20250429-ublk_selftests-v2-2-e970b6d9e4f4@purestorage.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>

authored by

Uday Shankar and committed by
Jens Axboe
254827a3 3d6ee575

+1 -1
+1 -1
tools/testing/selftests/ublk/test_generic_06.sh
··· 17 17 dd if=/dev/urandom of=/dev/ublkb${dev_id} oflag=direct bs=4k count=1 status=none > /dev/null 2>&1 & 18 18 dd_pid=$! 19 19 20 - __ublk_kill_daemon ${dev_id} "DEAD" 20 + __ublk_kill_daemon ${dev_id} "DEAD" >/dev/null 21 21 22 22 wait $dd_pid 23 23 dd_exitcode=$?