mirror of
https://github.com/ceph/ceph
synced 2025-02-03 00:43:55 +00:00
ca97fae81f
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>
26 lines
399 B
Bash
Executable File
26 lines
399 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
ceph mds set allow_new_snaps --yes-i-really-mean-it
|
|
|
|
# multiple intervening snapshots with no modifications, and thus no
|
|
# snapflush client_caps messages. make sure the mds can handle this.
|
|
|
|
for f in `seq 1 20` ; do
|
|
|
|
mkdir a
|
|
cat > a/foo &
|
|
mkdir a/.snap/one
|
|
mkdir a/.snap/two
|
|
chmod 777 a/foo
|
|
sync # this might crash the mds
|
|
ps
|
|
rmdir a/.snap/*
|
|
rm a/foo
|
|
rmdir a
|
|
|
|
done
|
|
|
|
echo OK
|