mirror of
https://github.com/ceph/ceph
synced 2024-12-23 20:03:56 +00:00
2cb0c110b5
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
30 lines
404 B
Bash
Executable File
30 lines
404 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
dotest() {
|
|
srci=$1
|
|
srcdn=$2
|
|
dest=$3
|
|
n=$4
|
|
|
|
touch mnt/$srci/srci$n
|
|
ln mnt/$srci/srci$n mnt/$srcdn/srcdn$n
|
|
touch mnt/$dest/dest$n
|
|
|
|
mv mnt/$srcdn/srcdn$n mnt/$dest/dest$n
|
|
}
|
|
|
|
# srci=srcdn=destdn
|
|
dotest 'a' 'a' 'a' 1
|
|
|
|
# srcdn=destdn
|
|
dotest 'b' 'a' 'a' 2
|
|
|
|
# srci=destdn
|
|
dotest 'a' 'b' 'a' 3
|
|
|
|
# srci=srcdn
|
|
dotest 'a' 'a' 'b' 4
|
|
|
|
# all different
|
|
dotest 'a' 'b' 'c' 5
|