diff options
Diffstat (limited to 'tests.sh')
-rwxr-xr-x | tests.sh | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2560,7 +2560,12 @@ function test_L_xattr() { } function test_help() { - ! invoke_bfs -help | grep -E '\{...?\}' + invoke_bfs -help | grep -E '\{...?\}' && return 1 + invoke_bfs -D help | grep -E '\{...?\}' && return 1 + invoke_bfs -S help | grep -E '\{...?\}' && return 1 + invoke_bfs -regextype help | grep -E '\{...?\}' && return 1 + + return 0 } |