mirror of
https://github.com/coreutils/coreutils.git
synced 2025-01-23 16:44:10 +08:00
112efa81f2
`(exit N); exit N'. Otherwise, those many tests could exit with improper exit status when exiting via e.g., a trapped interrupt. Thanks to a report from Bob Proulx.
34 lines
698 B
Bash
Executable File
34 lines
698 B
Bash
Executable File
#!/bin/sh
|
|
# make sure ls -L always follows symlinks
|
|
|
|
if test "$VERBOSE" = yes; then
|
|
set -x
|
|
ls --version
|
|
fi
|
|
|
|
pwd=`pwd`
|
|
tmp=follow-sl.$$
|
|
trap 'status=$?; cd $pwd; rm -rf $tmp && exit $status' 0
|
|
trap '(exit $?); exit' 1 2 13 15
|
|
|
|
framework_failure=0
|
|
mkdir $tmp || framework_failure=1
|
|
cd $tmp || framework_failure=1
|
|
ln -s link link || framework_failure=1
|
|
|
|
# Make sure the symlink was created.
|
|
# `ln -s link link' succeeds, but creates no file on
|
|
# systems running some DJGPP-2.03 libc.
|
|
ls -F link > /dev/null || framework_failure=1
|
|
|
|
if test $framework_failure = 1; then
|
|
echo 'failure in testing framework'
|
|
(exit 1); exit 1
|
|
fi
|
|
|
|
fail=0
|
|
|
|
ls -L link 2> /dev/null && fail=1
|
|
|
|
(exit $fail); exit $fail
|