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/ln | |
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/ln')
-rwxr-xr-x | tests/ln/backup-1 | 2 | ||||
-rwxr-xr-x | tests/ln/hard-backup | 2 | ||||
-rwxr-xr-x | tests/ln/hard-to-sym | 2 | ||||
-rwxr-xr-x | tests/ln/misc | 2 | ||||
-rwxr-xr-x | tests/ln/sf-1 | 2 | ||||
-rwxr-xr-x | tests/ln/slash-decorated-nonexistent-dest | 2 | ||||
-rwxr-xr-x | tests/ln/target-1 | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/tests/ln/backup-1 b/tests/ln/backup-1 index f07ba9493..17e9428f0 100755 --- a/tests/ln/backup-1 +++ b/tests/ln/backup-1 @@ -20,7 +20,7 @@ # Based on a problem report from Jamie Lokier. . "${srcdir=.}/init.sh"; path_prepend_ ../src -test "$VERBOSE" = yes && ln --version +print_ver_ ln touch a b || framework_failure diff --git a/tests/ln/hard-backup b/tests/ln/hard-backup index 3b3f6ec71..41af2d907 100755 --- a/tests/ln/hard-backup +++ b/tests/ln/hard-backup @@ -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 && ln --version +print_ver_ ln touch f || framework_failure diff --git a/tests/ln/hard-to-sym b/tests/ln/hard-to-sym index a78b738ad..13d22fbed 100755 --- a/tests/ln/hard-to-sym +++ b/tests/ln/hard-to-sym @@ -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 && ln --version +print_ver_ ln # =================================================== diff --git a/tests/ln/misc b/tests/ln/misc index de03890f4..994f42ea3 100755 --- a/tests/ln/misc +++ b/tests/ln/misc @@ -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 && ln --version +print_ver_ ln t=tln-symlink d=tln-subdir diff --git a/tests/ln/sf-1 b/tests/ln/sf-1 index 189abe5b8..4ba8f3d18 100755 --- a/tests/ln/sf-1 +++ b/tests/ln/sf-1 @@ -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 && ln --version +print_ver_ ln echo foo > a || framework_failure ln -s . b || framework_failure diff --git a/tests/ln/slash-decorated-nonexistent-dest b/tests/ln/slash-decorated-nonexistent-dest index 1020da270..e07bb3d74 100755 --- a/tests/ln/slash-decorated-nonexistent-dest +++ b/tests/ln/slash-decorated-nonexistent-dest @@ -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 && ln --version +print_ver_ ln touch f || framework_failure diff --git a/tests/ln/target-1 b/tests/ln/target-1 index 1f1ebc2d5..e5e86c007 100755 --- a/tests/ln/target-1 +++ b/tests/ln/target-1 @@ -22,7 +22,7 @@ # Based on a test case from Dmitry V. Levin. . "${srcdir=.}/init.sh"; path_prepend_ ../src -test "$VERBOSE" = yes && ln --version +print_ver_ ln mkdir d || framework_failure ln -s --target-dir=d ../f || fail=1 |