3 # This software is part of the SBCL system. See the README file for
6 # While most of SBCL is derived from the CMU CL system, the test
7 # files (like this one) were written from scratch after the fork
10 # This software is in the public domain and is provided with
11 # absolutely no warranty. See the COPYING and CREDITS files for
17 run_sbcl
--eval '(sb-thread:return-from-thread t :allow-exit t)'
18 check_status_maybe_lose
"return from main thread" $?
0 "ok"
20 run_sbcl
--eval '(sb-thread:abort-thread :allow-exit t)'
21 check_status_maybe_lose
"abort main thread" $?
1 "ok"
23 run_sbcl
--eval '#+sb-thread (sb-thread:join-thread (sb-thread:make-thread (lambda () (sb-ext:exit :code 77)))) #-sb-thread (sb-ext:exit :code 77)'
24 check_status_maybe_lose
"exit from normal thread" $?
77 "ok"
26 flag
="condition-wait-sigcont.tmp"
29 # $! is not set correctly when calling run_sbcl, do it directly
30 "$SBCL_RUNTIME" --core "$SBCL_CORE" $SBCL_ARGS \
31 --load "$SBCL_PWD/condition-wait-sigcont.lisp" &
34 while [ -f $flag ]; do sleep 1; done