1#!/bin/bash
2# SPDX-License-Identifier: GPL-2.0
3
4. "$(cd "$(dirname "$0")" && pwd)"/test_common.sh
5
6TID="stripe_01"
7ERR_CODE=0
8
9if ! _have_program fio; then
10	exit "$UBLK_SKIP_CODE"
11fi
12
13_prep_test "stripe" "write and verify test"
14
15_create_backfile 0 256M
16_create_backfile 1 256M
17
18dev_id=$(_add_ublk_dev -t stripe "${UBLK_BACKFILES[0]}" "${UBLK_BACKFILES[1]}")
19_check_add_dev $TID $?
20
21# run fio over the ublk disk
22_run_fio_verify_io --filename=/dev/ublkb"${dev_id}" --size=512M
23ERR_CODE=$?
24
25_cleanup_test "stripe"
26_show_result $TID $ERR_CODE
27