diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2011-12-23 12:47:19 +0100 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2011-12-23 12:47:19 +0100 |
commit | 03f5195860391f524df10f90b54a79f50de3b5ba (patch) | |
tree | 8a9e32f7cb4f76229ef64eacf1817f3104186031 /tests | |
parent | 75f2b50a655a8dc41a51c6fdcb1c6f8571dce348 (diff) | |
download | automake-03f5195860391f524df10f90b54a79f50de3b5ba.tar.gz |
tests: fix failure due to debugging code forgotten into a test
* tests/missing-tar.test: Don't ever call the `missing' script
with `sh -x'; this was used for debugging, but an instance of
it slipped into the committed test case. Bug revealed by a
failure on a Solaris 10 system with GNU tar installed as `gtar'.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/missing-tar.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/missing-tar.test b/tests/missing-tar.test index 4f531dfde..889ae20d4 100755 --- a/tests/missing-tar.test +++ b/tests/missing-tar.test @@ -142,7 +142,7 @@ $EGREP "(g|gnu)tar" stderr && Exit 1 rm -f bin/* # We try to use an option that causes any `tar' program (GNU or non-GNU) to. -sh -x ./missing --run tar --bad-unknonw-option cvf foo.tar ./data.txt 2>stderr \ +./missing --run tar --bad-unknonw-option cvf foo.tar ./data.txt 2>stderr \ && { cat stderr >&2; Exit 1; } cat stderr >&2 test ! -f foo.tar |