Update of /cvsroot/sbcl/sbcl/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv18885/tests
Modified Files:
run-program.test.sh
Log Message:
0.8.3.18:
Allow RUN-PROGRAM to work even when something in $PATH is not
an existent directory:
... patch from Andreas Fuchs sbcl-devel 2003-08-26;
... add a test case;
Also, need find-gnumake.sh in binary distributions:
... make it so!
Index: run-program.test.sh
===================================================================
RCS file: /cvsroot/sbcl/sbcl/tests/run-program.test.sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- run-program.test.sh 4 Jun 2003 15:29:39 -0000 1.8
+++ run-program.test.sh 1 Sep 2003 10:41:25 -0000 1.9
@@ -17,7 +17,7 @@
# one of the tests below).
SOMETHING_IN_THE_ENVIRONMENT='yes there is'
export SOMETHING_IN_THE_ENVIRONMENT
-
+export PATH=/some/path/that/does/not/exist:${PATH}
${SBCL:-sbcl} <<EOF
;; test that $PATH is searched
|