]> git.proxmox.com Git - ceph.git/blame - ceph/qa/run_xfstests_qemu.sh
bump version to 12.2.10-pve1
[ceph.git] / ceph / qa / run_xfstests_qemu.sh
CommitLineData
7c673cae
FG
1#!/bin/bash
2#
3# TODO switch to run_xfstests.sh (see run_xfstests_krbd.sh)
4
5set -x
6
7[ -n "${TESTDIR}" ] || export TESTDIR="/tmp/cephtest"
8[ -d "${TESTDIR}" ] || mkdir "${TESTDIR}"
9
10URL_BASE="https://git.ceph.com/?p=ceph.git;a=blob_plain;f=qa"
11SCRIPT="run_xfstests-obsolete.sh"
12
13cd "${TESTDIR}"
14
15wget -O "${SCRIPT}" "${URL_BASE}/${SCRIPT}"
16chmod +x "${SCRIPT}"
17
18# tests excluded fail in the current testing vm regardless of whether
19# rbd is used
20
21./"${SCRIPT}" -c 1 -f xfs -t /dev/vdb -s /dev/vdc \
22 1-7 9-17 19-26 28-49 51-61 63 66-67 69-79 83 85-105 108-110 112-135 \
23 137-170 174-191 193-204 206-217 220-227 230-231 233 235-241 243-249 \
24 251-262 264-278 281-286 288-289
25STATUS=$?
26
27rm -f "${SCRIPT}"
28
29exit "${STATUS}"