Skip to content

Commit

Permalink
Fix iotest single run
Browse files Browse the repository at this point in the history
  • Loading branch information
petrzpav committed May 26, 2023
1 parent e22119a commit a580167
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion iotest
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,10 @@ run_io_tests() {
done < <(find "${IOTEST_FOLDER}" -type d -links 2 -print0)
printf -- "Summary: run %s, skipped 0, passed %s\n" "${count}" "${passed}"
else
declare -r folder="${IOTEST_FOLDER}/${IOTEST_SINGLE_NAME}"
# shellcheck disable=SC2012
for name in $(ls "${folder}/" | rev | cut -d. -f2- | rev | sort -u); do
io_test "${IOTEST_FOLDER}/${IOTEST_SINGLE_NAME}" "${name}" \
io_test " ${folder}" "${name}" \
|| true
done
fi
Expand Down

0 comments on commit a580167

Please sign in to comment.