#!/bin/sh
. ./subr.sh
use_test_subdirectory
run_sbcl --eval '(sb-thread:return-from-thread t :allow-exit t)'
check_status_maybe_lose "return from main thread" $? 0 "ok"
run_sbcl --eval '(sb-thread:abort-thread :allow-exit t)'
check_status_maybe_lose "abort main thread" $? 1 "ok"
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)'
check_status_maybe_lose "exit from normal thread" $? 77 "ok"
flag="condition-wait-sigcont.tmp"
touch $flag
"$SBCL_RUNTIME" --core "$SBCL_CORE" $SBCL_ARGS \
--load "$SBCL_PWD/condition-wait-sigcont.lisp" &
sb_pid=$!
while [ -f $flag ]; do sleep 1; done
sleep 1
kill -STOP $sb_pid
kill -CONT $sb_pid
sleep 2
kill -KILL $sb_pid
if [ -f $flag ]
then
rm $flag
exit 1
else
exit 104
fi