1.0.12.33: Have foreign.test.sh create .so files under the test directory
authorRichard M Kreuter <kreuter@users.sourceforge.net>
Fri, 14 Dec 2007 06:12:57 +0000 (06:12 +0000)
committerRichard M Kreuter <kreuter@users.sourceforge.net>
Fri, 14 Dec 2007 06:12:57 +0000 (06:12 +0000)
* 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
version.lisp-expr

index 2e3be6c..039d121 100644 (file)
@@ -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
index 184cce5..5666f7f 100644 (file)
@@ -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"