From 6a0601ab48635465ad3400c290e5cfbca28e5367 Mon Sep 17 00:00:00 2001 From: Richard M Kreuter Date: Fri, 14 Dec 2007 06:12:57 +0000 Subject: [PATCH] 1.0.12.33: Have foreign.test.sh create .so files under the test directory * If /tmp or TMPDIR is mounted noexec, loading foreign objects doesn't fails, but it's not SBCL's fault. * Also remember to bump version.lisp-expr (the last two commits forgot this). --- tests/foreign.test.sh | 6 ++++-- version.lisp-expr | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/foreign.test.sh b/tests/foreign.test.sh index 2e3be6c39..039d1210f 100644 --- a/tests/foreign.test.sh +++ b/tests/foreign.test.sh @@ -21,8 +21,10 @@ echo //entering foreign.test.sh # and non-linkage-table platforms fail this PUNT=104 -testfilestem=${TMPDIR:-/tmp}/sbcl-foreign-test-$$ +testfiledir=sbcl-foreign-test-$$ +testfilestem=`pwd`/$testfiledir/sbcl-foreign-test +mkdir $testfiledir ## Make some shared object files to test with. build_so() { @@ -327,7 +329,7 @@ fi echo missing .so ok -rm -f $testfilestem.* $testfilestem-* +rm -r $testfiledir # success convention for script exit 104 diff --git a/version.lisp-expr b/version.lisp-expr index 184cce593..5666f7f54 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.12.31" +"1.0.12.33" -- 2.11.4.GIT