Signed-off-by: Colin McCabe <colinm@hq.newdream.net>
# TODO: turn off recovery delay start and verify that every osd gets copies of the correct objects.
# success
- return 1
+ return 0
}
osd_resurrection_1() {
[ $? -eq 1 ] || die "Failed to discover unfound objects."
# success
- return 1
+ return 0
}
stray_test() {
}
run() {
- osd_resurrection_1
- [ $? -eq 1 ] || return 0
- ./stop.sh
+ osd_resurrection_1 || die "test failed"
- stray_test
- [ $? -eq 1 ] || return 0
- ./stop.sh
+ stray_test || die "test failed"
}
$@