X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fthreads.test.sh;h=c7d637435b4034340029ddde287aa960c5349541;hb=a2d206014a62e159ffda2529ac379c2e28bc281c;hp=3d7a01a193ce9c9680bbd989d3af17a2bbc13901;hpb=c97e05b47236081529c73981b7624e0e0bb98fad;p=sbcl.git diff --git a/tests/threads.test.sh b/tests/threads.test.sh index 3d7a01a..c7d6374 100644 --- a/tests/threads.test.sh +++ b/tests/threads.test.sh @@ -11,10 +11,24 @@ # absolutely no warranty. See the COPYING and CREDITS files for # more information. +. ./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 -../src/runtime/sbcl --core ../output/sbcl.core --load condition-wait-sigcont.lisp & +# $! is not set correctly when calling run_sbcl, do it directly +"$SBCL_RUNTIME" --core "$SBCL_CORE" $SBCL_ARGS \ + --load "$SBCL_PWD/condition-wait-sigcont.lisp" & sb_pid=$! while [ -f $flag ]; do sleep 1; done