2025-04-12 02:30:27 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
|
|
. "$(cd "$(dirname "$0")" && pwd)"/test_common.sh
|
|
|
|
|
|
|
|
|
|
TID="generic_04"
|
|
|
|
|
ERR_CODE=0
|
|
|
|
|
|
|
|
|
|
ublk_run_recover_test()
|
|
|
|
|
{
|
2025-05-22 16:35:21 +00:00
|
|
|
run_io_and_recover "kill_daemon" "$@"
|
2025-04-12 02:30:27 +00:00
|
|
|
ERR_CODE=$?
|
|
|
|
|
if [ ${ERR_CODE} -ne 0 ]; then
|
|
|
|
|
echo "$TID failure: $*"
|
|
|
|
|
_show_result $TID $ERR_CODE
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ! _have_program fio; then
|
|
|
|
|
exit "$UBLK_SKIP_CODE"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
_prep_test "recover" "basic recover function verification"
|
|
|
|
|
|
|
|
|
|
_create_backfile 0 256M
|
|
|
|
|
_create_backfile 1 128M
|
|
|
|
|
_create_backfile 2 128M
|
|
|
|
|
|
|
|
|
|
ublk_run_recover_test -t null -q 2 -r 1 &
|
|
|
|
|
ublk_run_recover_test -t loop -q 2 -r 1 "${UBLK_BACKFILES[0]}" &
|
|
|
|
|
ublk_run_recover_test -t stripe -q 2 -r 1 "${UBLK_BACKFILES[1]}" "${UBLK_BACKFILES[2]}" &
|
|
|
|
|
wait
|
|
|
|
|
|
|
|
|
|
ublk_run_recover_test -t null -q 2 -r 1 -i 1 &
|
|
|
|
|
ublk_run_recover_test -t loop -q 2 -r 1 -i 1 "${UBLK_BACKFILES[0]}" &
|
|
|
|
|
ublk_run_recover_test -t stripe -q 2 -r 1 -i 1 "${UBLK_BACKFILES[1]}" "${UBLK_BACKFILES[2]}" &
|
|
|
|
|
wait
|
|
|
|
|
|
|
|
|
|
_cleanup_test "recover"
|
|
|
|
|
_show_result $TID $ERR_CODE
|