X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fqa%2Fworkunits%2Fdirect_io%2Fmisc.sh;fp=src%2Fceph%2Fqa%2Fworkunits%2Fdirect_io%2Fmisc.sh;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=6de080d2d17e8cb80f4b862a13df8ec6c4bdab8f;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/qa/workunits/direct_io/misc.sh b/src/ceph/qa/workunits/direct_io/misc.sh deleted file mode 100755 index 6de080d..0000000 --- a/src/ceph/qa/workunits/direct_io/misc.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -ex - -# a few test cases from henry -echo "test read from hole" -dd if=/dev/zero of=dd3 bs=1 seek=1048576 count=0 -dd if=dd3 of=/tmp/ddout1 skip=8 bs=512 count=2 iflag=direct -dd if=/dev/zero of=/tmp/dd3 bs=512 count=2 -cmp /tmp/dd3 /tmp/ddout1 - -echo "other thing" -dd if=/dev/urandom of=/tmp/dd10 bs=500 count=1 -dd if=/tmp/dd10 of=dd10 bs=512 seek=8388 count=1 -dd if=dd10 of=/tmp/dd10out bs=512 skip=8388 count=1 iflag=direct -cmp /tmp/dd10 /tmp/dd10out - -echo OK