summaryrefslogtreecommitdiff
path: root/t/instsh3.sh
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2013-12-25 17:07:11 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2013-12-25 17:07:29 +0100
commit6863925ddd92c8f4b44556a2bb32d958d00325ff (patch)
tree8c53e5ef50e357c08af6f60c92b630a1c99148e8 /t/instsh3.sh
parent58fb7bf3e5f514b4a0595a7eea6732d6c816e29a (diff)
downloadautomake-6863925ddd92c8f4b44556a2bb32d958d00325ff.tar.gz
tests: more significant names for some tests
* t/insh2.sh: Rename... * t/dist-install-sh.sh: ... like this. * t/instsh.sh: Rename... * t/add-missing-install-sh.sh: ... like this. * t/instsh2.sh: Rename... * t/install-sh-unittests.sh: ... like this. * t/instsh3.sh: Rename... * t/install-sh-option-C.sh: ... like this. * t/list-of-tests.mk: Adjust. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/instsh3.sh')
-rw-r--r--t/instsh3.sh45
1 files changed, 0 insertions, 45 deletions
diff --git a/t/instsh3.sh b/t/instsh3.sh
deleted file mode 100644
index a53e21df7..000000000
--- a/t/instsh3.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#! /bin/sh
-# Copyright (C) 2006-2013 Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2, or (at your option)
-# any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-# More install-sh checks: check -C.
-
-am_create_testdir=empty
-required=non-root
-. test-init.sh
-
-# Solaris /usr/ucb/touch does not accept -t.
-touch -t "$old_timestamp" foo \
- || skip_ "touch utility doesn't accept '-t' option"
-
-get_shell_script install-sh
-
-./install-sh -d d1
-
-# Do not change the timestamps when using -C.
-echo foo >file
-./install-sh -C file d1
-TZ=UTC0 touch -t $old_timestamp d1/file
-./install-sh -C file d1
-is_newest file d1/file
-echo foo1 >file
-./install-sh -C file d1
-diff file d1/file
-# Rights must be updated.
-./install-sh -C -m 444 file d1
-test -r d1/file
-test ! -w d1/file
-
-: