summaryrefslogtreecommitdiffstats
path: root/tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests.sh')
-rwxr-xr-xtests.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests.sh b/tests.sh
index 6ebdc50..711bbb6 100755
--- a/tests.sh
+++ b/tests.sh
@@ -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
}