* tests/df/df-output.sh: Use a more relaxed match.
* tests/du/inodes.sh: Likewise.
# Ensure that --output is mentioned in the usage.
df --help > out || fail=1
-grep ' --output' out >/dev/null || { fail=1; cat out; }
+grep -- '--output' out >/dev/null || { fail=1; cat out; }
# Ensure that the FILE field contains the argument.
cat <<\EOF > exp || framework_failure_
# Ensure that --inodes is mentioned in the usage.
du --help > out || fail=1
-grep ' --inodes ' out >/dev/null || { fail=1; cat out; }
+grep -- '--inodes' out >/dev/null || { fail=1; cat out; }
Exit $fail