mirror of
https://github.com/ceph/ceph
synced 2024-12-20 02:13:04 +00:00
16f7d7c71e
The origin expect_failure function return 0 regardness of command's return value. Signed-off-by: Yan, Zheng <zyan@redhat.com>
28 lines
445 B
Bash
Executable File
28 lines
445 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
expect_failure() {
|
|
if "$@"; then return 1; else return 0; fi
|
|
}
|
|
set -e
|
|
|
|
ceph mds set allow_new_snaps false
|
|
expect_failure mkdir .snap/foo
|
|
ceph mds set allow_new_snaps true --yes-i-really-mean-it
|
|
|
|
echo asdf > foo
|
|
mkdir .snap/foo
|
|
grep asdf .snap/foo/foo
|
|
rmdir .snap/foo
|
|
|
|
echo asdf > bar
|
|
mkdir .snap/bar
|
|
rm bar
|
|
grep asdf .snap/bar/bar
|
|
rmdir .snap/bar
|
|
rm foo
|
|
|
|
ceph mds set allow_new_snaps false
|
|
expect_failure mkdir .snap/baz
|
|
|
|
echo OK
|