diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-12-26 00:33:05 +0100 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-12-26 00:42:09 +0100 |
commit | 3dd26cf0809384a80586113656fad0a4983a2a26 (patch) | |
tree | 67328b3a8a531da0207199f0dcf8c6ca4f90f294 | |
parent | 222337e60bfc87456773a4c7cbbbd3192fde956d (diff) | |
download | automake-3dd26cf0809384a80586113656fad0a4983a2a26.tar.gz |
install-sh: a slightly better diagnostic, and tests enhancements
* lib/install-sh: When called with no non-option arguments and the '-t'
option with an argument that is not an existing directory, have the
diagnostic output complain about the lack of required arguments rather
than about the bad argument passed to '-t'.
* t/install-sh-unittests.sh: Enhance to also check diagnostic printed
in cases of expected failure.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rwxr-xr-x | lib/install-sh | 18 | ||||
-rw-r--r-- | t/install-sh-unittests.sh | 38 |
2 files changed, 35 insertions, 21 deletions
diff --git a/lib/install-sh b/lib/install-sh index d8de87f30..0b0fdcbba 100755 --- a/lib/install-sh +++ b/lib/install-sh @@ -193,15 +193,6 @@ if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then done fi -if test -z "$dir_arg"; then - if test $# -gt 1 || test "$is_target_a_directory" = always; then - if test ! -d "$dst_arg"; then - echo "$0: $dst_arg: Is not a directory." >&2 - exit 1 - fi - fi -fi - if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 @@ -213,6 +204,15 @@ if test $# -eq 0; then fi if test -z "$dir_arg"; then + if test $# -gt 1 || test "$is_target_a_directory" = always; then + if test ! -d "$dst_arg"; then + echo "$0: $dst_arg: Is not a directory." >&2 + exit 1 + fi + fi +fi + +if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 diff --git a/t/install-sh-unittests.sh b/t/install-sh-unittests.sh index 1b85c9ce3..dff0c51ba 100644 --- a/t/install-sh-unittests.sh +++ b/t/install-sh-unittests.sh @@ -19,23 +19,37 @@ am_create_testdir=empty . test-init.sh +install_sh_fail () +{ + err_rx=$1; shift + ./install-sh ${1+"$@"} 2>stderr && { cat stderr >&2; exit 1; } + cat stderr >&2 + $EGREP "install-sh:.* $err_rx" stderr || exit 1 +} + get_shell_script install-sh # Basic errors. -./install-sh && exit 1 -./install-sh -m 644 dest && exit 1 +install_sh_fail 'no input file specified' +install_sh_fail 'no input file specified' dest +install_sh_fail 'no input file specified' -m 644 dest +install_sh_fail 'no input file specified' -c -t dest # Incorrect usages. : > bar : > baz : > qux -./install-sh -d -t foo && exit 1 -./install-sh -d -t foo bar && exit 1 -./install-sh -t foo bar && exit 1 -./install-sh bar baz foo && exit 1 +install_sh_fail 'target directory not allowed when installing a directory' \ + -d -t foo +install_sh_fail 'target directory not allowed when installing a directory' \ + -d -t foo bar +install_sh_fail 'foo: [iI]s not a directory' -t foo bar +install_sh_fail 'foo: [iI]s not a directory' bar baz foo mkdir foo -./install-sh -d -t foo && exit 1 -./install-sh -d -t foo bar && exit 1 +install_sh_fail 'target directory not allowed when installing a directory' \ + -d -t foo +install_sh_fail 'target directory not allowed when installing a directory' \ + -d -t foo bar rmdir foo rm -f bar baz qux @@ -96,8 +110,8 @@ test -f d4/z ./install-sh -T x d3/y test -f x test -f d3/y -./install-sh -T x d3 && exit 1 -./install-sh -T x d4// && exit 1 +install_sh_fail 'd3: [iI]s a directory' -T x d3 +install_sh_fail 'd4(//)?: [iI]s a directory' -T x d4// # Ensure that install-sh works with names that include spaces. touch 'a b' @@ -108,8 +122,8 @@ test -f 'a b' # Ensure we do not run into 'test' operator precedence bugs with Tru64 sh. for c in = '(' ')' '!'; do - ./install-sh $c 2>stderr && { cat stderr >&2; exit 1; } - cat stderr >&2 + install_sh_fail 'no input file specified' $c + test -f stderr # sanity check grep 'test: ' stderr && exit 1 # Skip tests if the file system is not capable. mkdir ./$c || continue |