diff options
Diffstat (limited to 'tests/fallocate.rc')
-rw-r--r-- | tests/fallocate.rc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/fallocate.rc b/tests/fallocate.rc index 3756bb949bd..d117ba9c051 100644 --- a/tests/fallocate.rc +++ b/tests/fallocate.rc @@ -7,13 +7,13 @@ function require_fallocate() { - output=`fallocate $* 2>&1` - ret=$? - if [ ! $ret -eq 0 ] && ([[ $output == *unsupported* ]] || - [[ $output == *invalid* ]] || - [[ $output == *"not supported"* ]]) - then - SKIP_TESTS - exit - fi + output=`fallocate $* 2>&1` + ret=$? + if [ ! $ret -eq 0 ] && ([[ $output == *unsupported* ]] || + [[ $output == *invalid* ]] || + [[ $output == *"not supported"* ]]) + then + SKIP_TESTS + exit + fi } |