mirror of
https://github.com/ceph/ceph
synced 2024-12-11 14:09:09 +00:00
ce00564049
Tests fix for #1399. Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
22 lines
264 B
Bash
Executable File
22 lines
264 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
# this tests fix for #1399
|
|
mkdir foo
|
|
mkdir foo/.snap/one
|
|
touch bar
|
|
mv bar foo
|
|
sync
|
|
# should not crash :)
|
|
|
|
mkdir baz
|
|
mkdir baz/.snap/two
|
|
mv baz foo
|
|
sync
|
|
# should not crash :)
|
|
|
|
# clean up.
|
|
rmdir foo/baz/.snap/two
|
|
rmdir foo/.snap/one
|
|
rm -r foo
|
|
|
|
echo OK |