diff options
author | Jim Meyering <meyering@redhat.com> | 2010-11-14 12:02:39 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2010-11-17 20:48:57 +0100 |
commit | ff7f0ff85c40174f1885ec61fa4ab6b73d02b555 (patch) | |
tree | f3b51b82bcee4d908f31adab1c09552e77e54fe2 /tests/misc/pwd-option | |
parent | f38becab02472e6872048a1951b249b2a3c054df (diff) | |
download | coreutils-ff7f0ff85c40174f1885ec61fa4ab6b73d02b555.tar.xz |
tests: convert 'if test "$VERBOSE" = yes; then' to test ... &&
Diffstat (limited to 'tests/misc/pwd-option')
-rwxr-xr-x | tests/misc/pwd-option | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/misc/pwd-option b/tests/misc/pwd-option index c1a28fef8..e4ecf11f9 100755 --- a/tests/misc/pwd-option +++ b/tests/misc/pwd-option @@ -16,12 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -if test "$VERBOSE" = yes; then - set -x - env -- pwd --version -fi - . $srcdir/test-lib.sh +test "$VERBOSE" = yes && env -- pwd --version mkdir -p a/b || framework_failure ln -s a/b c || framework_failure |