mirror of
https://github.com/ceph/ceph
synced 2025-01-29 14:34:40 +00:00
a232d273c1
... filesystems other than 'cephfs'. It is not required to set 'allow_new_snaps' to True to allow snapshot to be created on a filesystem. Remove that setting. Remove 'fs/snaps/snaptest-0.sh' that is racy when running in parallel on an another client that mounted the same file system. Include a similar test in qa/tasks/cephfs/test_snapshots.py Signed-off-by: Ramana Raja <rraja@redhat.com>
25 lines
407 B
Bash
Executable File
25 lines
407 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
file=linux-2.6.33.tar.bz2
|
|
wget -q http://download.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
|