summaryrefslogtreecommitdiffstats
path: root/src/ceph/qa/run_xfstests_qemu.sh
diff options
context:
space:
mode:
authorQiaowei Ren <qiaowei.ren@intel.com>2018-03-01 14:38:11 +0800
committerQiaowei Ren <qiaowei.ren@intel.com>2018-03-01 14:38:11 +0800
commit7da45d65be36d36b880cc55c5036e96c24b53f00 (patch)
treed4f944eb4f8f8de50a9a7584ffa408dc3a3185b2 /src/ceph/qa/run_xfstests_qemu.sh
parent691462d09d0987b47e112d6ee8740375df3c51b2 (diff)
remove ceph code
This patch removes initial ceph code, due to license issue. Change-Id: I092d44f601cdf34aed92300fe13214925563081c Signed-off-by: Qiaowei Ren <qiaowei.ren@intel.com>
Diffstat (limited to 'src/ceph/qa/run_xfstests_qemu.sh')
-rw-r--r--src/ceph/qa/run_xfstests_qemu.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/ceph/qa/run_xfstests_qemu.sh b/src/ceph/qa/run_xfstests_qemu.sh
deleted file mode 100644
index a15f598..0000000
--- a/src/ceph/qa/run_xfstests_qemu.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-#
-# TODO switch to run_xfstests.sh (see run_xfstests_krbd.sh)
-
-set -x
-
-[ -n "${TESTDIR}" ] || export TESTDIR="/tmp/cephtest"
-[ -d "${TESTDIR}" ] || mkdir "${TESTDIR}"
-
-URL_BASE="https://git.ceph.com/?p=ceph.git;a=blob_plain;f=qa"
-SCRIPT="run_xfstests-obsolete.sh"
-
-cd "${TESTDIR}"
-
-wget -O "${SCRIPT}" "${URL_BASE}/${SCRIPT}"
-chmod +x "${SCRIPT}"
-
-# tests excluded fail in the current testing vm regardless of whether
-# rbd is used
-
-./"${SCRIPT}" -c 1 -f xfs -t /dev/vdb -s /dev/vdc \
- 1-7 9-17 19-26 28-49 51-61 63 66-67 69-79 83 85-105 108-110 112-135 \
- 137-170 174-191 193-204 206-217 220-227 230-231 233 235-241 243-249 \
- 251-262 264-278 281-286 288-289
-STATUS=$?
-
-rm -f "${SCRIPT}"
-
-exit "${STATUS}"