summaryrefslogtreecommitdiffstats
path: root/qa/workunits/fs/snaps/snaptest-realm-split.sh
blob: 3f01fd54dee7ae6dbb2a7c1c64cd52866c7f437b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh -x

set -e

ceph fs set cephfs allow_new_snaps true --yes-i-really-mean-it

mkdir -p 1/a
exec 3<> 1/a/file1

echo -n a >&3

mkdir 1/.snap/s1

echo -n b >&3

mkdir 2
# create new snaprealm at dir a, file1's cap should be attached to the new snaprealm
mv 1/a 2

mkdir 2/.snap/s2

echo -n c >&3

exec 3>&-

grep '^a$' 1/.snap/s1/a/file1
grep '^ab$' 2/.snap/s2/a/file1
grep '^abc$' 2/a/file1

rmdir 1/.snap/s1
rmdir 2/.snap/s2
rm -rf 1 2
echo OK