From 6db5731e2db2d90cc3a6996a310dbf248ad9aebb Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Thu, 22 May 2008 08:11:06 +0000 Subject: [PATCH] 1.0.16.43: test fixes From Vitaly Mayatskikh (sbcl-devel 2008-05-21) --- tests/filesys.test.sh | 4 ++-- tests/stress-gc.sh | 2 +- version.lisp-expr | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/filesys.test.sh b/tests/filesys.test.sh index f20c4e4..9b720a9 100644 --- a/tests/filesys.test.sh +++ b/tests/filesys.test.sh @@ -201,12 +201,12 @@ check_status_maybe_lose "DIRECTORY/TRUENAME part 3" $? # Test whether ENSURE-DIRECTORIES-EXIST can create a directory whose # name contains a wildcard character (it used to get itself confused # internally). -run_sbcl --eval '(ensure-directories-exist "foo\\*bar/baz.txt")' +run_sbcl --eval '(ensure-directories-exist "foo\\*bar/baz.txt")' --eval '(sb-ext:quit)' test -d foo*bar check_status_maybe_lose "ENSURE-DIRECTORIES-EXIST part 1" $? \ 0 "(directory exists)" -run_sbcl --eval '(ensure-directories-exist "foo\\?bar/baz.txt")' +run_sbcl --eval '(ensure-directories-exist "foo\\?bar/baz.txt")' --eval '(sb-ext:quit)' test -d foo?bar check_status_maybe_lose "ENSURE-DIRECTORIES-EXIST part 2" $? \ 0 "(directory exists)" diff --git a/tests/stress-gc.sh b/tests/stress-gc.sh index 32321b9..36ef336 100644 --- a/tests/stress-gc.sh +++ b/tests/stress-gc.sh @@ -13,7 +13,7 @@ . ./subr.sh -sbcl <