ceph/qa/workunits/snaps/snaptest-snap-rm-cmp.sh
Greg Farnum ca97fae81f qa: update snaps workunits for allow_new_snaps flag
Test that it works in snaptest-0.sh, and set the flag in
all the snap workunits so they continue to function.

Signed-off-by: Greg Farnum <greg@inktank.com>
Reviewed-by: Loic Dachary <loic@dachary.org>
2013-09-26 18:27:52 +02:00

26 lines
450 B
Bash
Executable File

#!/bin/sh -x
set -e
ceph mds set allow_new_snaps --yes-i-really-mean-it
file=linux-2.6.33.tar.bz2
wget -q http://ceph.com/qa/$file
real=`md5sum $file | awk '{print $1}'`
for f in `seq 1 20`
do
echo $f
cp $file a
mkdir .snap/s
rm a
cp .snap/s/a /tmp/a
cur=`md5sum /tmp/a | awk '{print $1}'`
if [ "$cur" != "$real" ]; then
echo "FAIL: bad match, /tmp/a $cur != real $real"
false
fi
rmdir .snap/s
done
rm $file