tests: use "compare exp out", not "compare out exp"
[coreutils.git] / tests / install / strip-program
blobebd6a41e3c7319165df585f35912621a73abdd00
1 #!/bin/sh
2 # Ensure "install -s --strip-program=PROGRAM" uses the program to strip
4 # Copyright (C) 2008-2011 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=.}/init.sh"; path_prepend_ ../src
20 print_ver_ ginstall
22 working_umask_or_skip_
24 cat <<EOF > b || framework_failure_
25 #!$PREFERABLY_POSIX_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 Exit $fail