blob: 1ac874b35f7482fc5f46b34fea1fd9f2108d0c04 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $FreeBSD: src/tools/regression/bin/sh/builtins/exec1.0,v 1.1.2.3.2.1 2010/12/21 17:09:25 kensmith Exp $
failures=
failure() {
echo "Error at line $1" >&2
failures=x$failures
}
(
exec >/dev/null
echo bad
)
[ $? = 0 ] || failure $LINENO
(
exec ${SH} -c 'exit 42'
echo bad
)
[ $? = 42 ] || failure $LINENO
(
exec /var/empty/nosuch
echo bad
) 2>/dev/null
[ $? = 127 ] || failure $LINENO
test -z "$failures"
|