mirror of
https://github.com/ceph/ceph
synced 2025-01-04 18:19:48 +00:00
24 lines
346 B
Bash
24 lines
346 B
Bash
|
#!/bin/sh -x
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# 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
|