From f7873f9a9edc6d39553106d0627b8ac270a1bfc4 Mon Sep 17 00:00:00 2001 From: Gabor Melis Date: Thu, 8 Jan 2009 17:21:08 +0000 Subject: [PATCH] 1.0.24.24: fix threads.test.sh ... so that it doesn't leave stray sbcl child processes around and it actually tests what it wants to test. --- tests/threads.test.sh | 4 +++- version.lisp-expr | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/threads.test.sh b/tests/threads.test.sh index 2341b3d..5331e88 100644 --- a/tests/threads.test.sh +++ b/tests/threads.test.sh @@ -17,7 +17,9 @@ use_test_subdirectory flag="condition-wait-sigcont.tmp" touch $flag -run_sbcl --load "$SBCL_PWD/condition-wait-sigcont.lisp" & +# $! is not set correctly when calling run_sbcl, do it directly +"$SBCL_RUNTIME" --core "$SBCL_CORE" \ + --load "$SBCL_PWD/condition-wait-sigcont.lisp" & sb_pid=$! while [ -f $flag ]; do sleep 1; done diff --git a/version.lisp-expr b/version.lisp-expr index 443f73a..f3f53a5 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.24.23" +"1.0.24.24" -- 1.7.10.4