From 93c21baaf6766c84806d1b4a558d5abfd0f5ec51 Mon Sep 17 00:00:00 2001 From: Brian Mastenbrook Date: Wed, 5 Nov 2008 03:46:46 +0000 Subject: [PATCH] 1.0.22.16: mkdtemp is unimplemented on Solaris * ... so don't fail SB-POSIX tests because it's not there. --- contrib/sb-posix/posix-tests.lisp | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/sb-posix/posix-tests.lisp b/contrib/sb-posix/posix-tests.lisp index 2a97c4c..272209f 100644 --- a/contrib/sb-posix/posix-tests.lisp +++ b/contrib/sb-posix/posix-tests.lisp @@ -765,7 +765,8 @@ (delete-file temp)))) t "mkstemp-1") -#-win32 +#-(or win32 sunos) +;;; mkdtemp is unimplemented on at least Solaris 10 (deftest mkdtemp.1 (let ((pathname (sb-ext:parse-native-namestring diff --git a/version.lisp-expr b/version.lisp-expr index c97b3e4..512b574 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.22.15" +"1.0.22.16" -- 1.7.10.4