summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorUday Shankar <ushankar@purestorage.com>2025-04-29 16:41:04 -0600
committerJens Axboe <axboe@kernel.dk>2025-05-05 16:54:52 -0600
commit254827a32118ddb171680dc2143c777cc68f2cbc (patch)
tree57d883b037c72aa63e7cde06609d7e630796dcc2 /tools
parent3d6ee575d0d49be35dbb787db4d05bdf94e2cdbb (diff)
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>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/testing/selftests/ublk/test_generic_06.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/ublk/test_generic_06.sh b/tools/testing/selftests/ublk/test_generic_06.sh
index b67230c42c84..fd42062b7b76 100755
--- a/tools/testing/selftests/ublk/test_generic_06.sh
+++ b/tools/testing/selftests/ublk/test_generic_06.sh
@@ -17,7 +17,7 @@ STARTTIME=${SECONDS}
dd if=/dev/urandom of=/dev/ublkb${dev_id} oflag=direct bs=4k count=1 status=none > /dev/null 2>&1 &
dd_pid=$!
-__ublk_kill_daemon ${dev_id} "DEAD"
+__ublk_kill_daemon ${dev_id} "DEAD" >/dev/null
wait $dd_pid
dd_exitcode=$?