summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/hush_test/hush-misc/exec.tests
blob: 6de50fa7bdb155cb83a911c571d66a0928745ebf (plain)
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
26
27
28
29
30
# make sure we have a way of checking these things
cd /proc/$$/fd || cd /dev/fd || exit 1

[ -e 44 ] && exit 1
exec 44>/dev/null
[ -e 44 ] || exit 1
echo pass fd out open

[ -e 55 ] && exit 1
exec 55>&44
[ -e 55 ] || exit 1
echo pass fd out dup

exec 44>&-
[ -e 44 ] && exit 1
echo pass fd out close

[ -e 66 ] && exit 1
exec 66</dev/null
[ -e 66 ] || exit 1
echo pass fd in open

[ -e 77 ] && exit 1
exec 77<&66
[ -e 77 ] || exit 1
echo pass fd in dup

exec 66<&-
[ -e 66 ] && exit 1
echo pass fd in close