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/printf-hex | |
| parent | tests: convert first batch of tests from test-lib.sh to init.sh (diff) | |
| download | coreutils-ff7f0ff85c40174f1885ec61fa4ab6b73d02b555.tar.gz coreutils-ff7f0ff85c40174f1885ec61fa4ab6b73d02b555.zip | |
tests: convert 'if test "$VERBOSE" = yes; then' to test ... &&
Diffstat (limited to 'tests/misc/printf-hex')
| -rwxr-xr-x | tests/misc/printf-hex | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/tests/misc/printf-hex b/tests/misc/printf-hex index e428d2605..39b70d6ef 100755 --- a/tests/misc/printf-hex +++ b/tests/misc/printf-hex @@ -16,18 +16,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -prog="$abs_top_builddir/src/printf" - -if test "$VERBOSE" = yes; then - set -x - "$prog" --version -fi - . $srcdir/test-lib.sh +test "$VERBOSE" = yes && env -- printf --version - - -"$prog" '\x7e3\n' > out || fail=1 +env printf '\x7e3\n' > out || fail=1 cat <<\EOF > exp ~3 EOF |
