maint: update all copyright year number ranges
[coreutils.git] / tests / install / strip-program.sh
blob028558edd08f760ad76c1d63e74cf9cf61d6ab03
1 #!/bin/sh
2 # Ensure "install -s --strip-program=PROGRAM" uses the program to strip
4 # Copyright (C) 2008-2017 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 . "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
20 print_ver_ ginstall
22 working_umask_or_skip_
24 cat <<EOF > b || framework_failure_
25 #!$SHELL
26 sed s/b/B/ \$1 > \$1.t && mv \$1.t \$1
27 EOF
28 chmod a+x b || framework_failure_
31 echo abc > src || fail=1
32 echo aBc > exp || fail=1
33 ginstall src dest -s --strip-program=./b || fail=1
34 compare exp dest || fail=1
36 # Check that install cleans up properly if strip fails.
37 returns_ 1 ginstall src dest2 -s --strip-program=./FOO || fail=1
38 test -e dest2 && fail=1
40 Exit $fail