mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04:00
10 lines
234 B
Text
10 lines
234 B
Text
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
result=$(sh -c '(/bin/sleep 1)& sleep 0.1; ps -p $! -o comm=; kill $!')
|
||
|
|
test "$result" = sleep || exit 1
|
||
|
|
|
||
|
|
result=$(sh -c '{ trap "echo trapped" EXIT; (/usr/bin/true); } & wait')
|
||
|
|
test "$result" = trapped || exit 1
|
||
|
|
|
||
|
|
exit 0
|