diff options
author | Jim Meyering <meyering@redhat.com> | 2010-11-17 21:35:31 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2010-11-17 21:45:51 +0100 |
commit | 293c37b9061c1afd0acd143bbded637a8f00b3a0 (patch) | |
tree | a7257594a4a6d18c2011f9ea87a86b0f07376bb6 /tests/df | |
parent | 5c0275e95353742854da6b915fed4fd0434d8159 (diff) | |
download | coreutils-293c37b9061c1afd0acd143bbded637a8f00b3a0.tar.xz |
tests: substitute the single-program $VERBOSE/--version uses
Automatically make all of the changes like this:
-test "$VERBOSE" = yes && chgrp --version
+print_ver_ chgrp
git grep -l 'VERBOSE.*--version'|xargs perl -pi -e \
's/test "\$VERBOSE" = yes && (\w+) --version/print_ver_ $1/'
Diffstat (limited to 'tests/df')
-rwxr-xr-x | tests/df/total-verify | 2 | ||||
-rwxr-xr-x | tests/df/unreadable | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/df/total-verify b/tests/df/total-verify index abe85bcbf..fe17c0503 100755 --- a/tests/df/total-verify +++ b/tests/df/total-verify @@ -17,7 +17,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. . "${srcdir=.}/init.sh"; path_prepend_ ../src -test "$VERBOSE" = yes && df --version +print_ver_ df df || skip_test_ "df fails" diff --git a/tests/df/unreadable b/tests/df/unreadable index 5c9876002..a54afe493 100755 --- a/tests/df/unreadable +++ b/tests/df/unreadable @@ -17,7 +17,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. . "${srcdir=.}/init.sh"; path_prepend_ ../src -test "$VERBOSE" = yes && df --version +print_ver_ df skip_if_root_ touch unreadable || fail=1 |