1998-05-09 19:56:14 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
|
|
dir=dir
|
|
|
|
|
file=file
|
|
|
|
|
|
|
|
|
|
framework_failure=0
|
|
|
|
|
|
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
|
|
|
|
|
|
1998-07-27 13:18:31 +00:00
|
|
|
# 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).
|
2000-02-28 07:23:00 +00:00
|
|
|
ginstall -s -c -m 555 ../../src/dd $dir || fail=1
|
1998-07-27 13:18:31 +00:00
|
|
|
# Make sure the dest file has been created.
|
|
|
|
|
test -f $dir/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
|
1998-07-27 13:18:31 +00:00
|
|
|
|
2000-02-27 13:17:12 +00:00
|
|
|
rm -rf $dir $file
|
1998-05-09 19:56:14 +00:00
|
|
|
|
|
|
|
|
exit $fail
|