1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-26 23:07:06 +02:00
Files
coreutils/tests/install/basic-1

62 lines
1.2 KiB
Plaintext
Raw Normal View History

1998-05-09 19:56:14 +00:00
#! /bin/sh
if test "$VERBOSE" = yes; then
set -x
ginstall --version
fi
1998-05-09 19:56:14 +00:00
dir=dir
file=file
pwd=`pwd`
tmp=inst-basic.$$
trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0
trap 'exit $?' 1 2 13 15
1998-05-09 19:56:14 +00:00
framework_failure=0
mkdir $tmp || framework_failure=1
cd $tmp || framework_failure=1
1998-05-09 19:56:14 +00:00
2000-02-27 13:17:12 +00:00
rm -rf $dir $file || framework_failure=1
mkdir -p $dir || framework_failure=1
1998-05-09 19:56:14 +00:00
echo foo > $file || framework_failure=1
if test $framework_failure = 1; then
echo 'failure in testing framework'
exit 1
fi
fail=0
2000-02-28 07:23:00 +00:00
ginstall $file $dir || fail=1
1998-05-09 19:56:14 +00:00
# Make sure the source file still exists.
test -f $file || fail=1
# Make sure the dest file has been created.
test -f $dir/$file || fail=1
# Make sure strip works.
cp ../../../src/dd .
cp dd dd2
strip dd2 || \
{
cat 1>&2 <<EOF
$0: WARNING!!!
Your strip command doesn't seem to work, so skipping
the test of install's --strip option.
EOF
exit 77
}
# This test would fail with 3.16s when using versions of strip that
# don't work on read-only files (the one from binutils works fine).
ginstall -s -c -m 555 dd $dir || fail=1
# Make sure the dest file has been created.
test -f dd || fail=1
1998-07-27 13:26:58 +00:00
# ...and that the permissions are as requested.
2000-02-27 13:17:12 +00:00
set X `ls -l $dir/dd`
1998-07-27 13:26:58 +00:00
shift
test "$1" = -r-xr-xr-x || fail=1
(exit $fail); exit