Update of /cvsroot/sbcl/sbcl/tests
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv12469/tests
Modified Files:
run-program.test.sh
Log Message:
1.0.12.43: Two tiny RUN-PROGRAM-related cleanups
* Having removed FIND-EXECUTABLE-IN-SEARCH-PATH, remove the symbol
from package-data-list.lisp-expr.
* A recently-added test for RUN-PROGRAM used a non-conforming
"sleep 2s" command in a shell script. POSIX sleep(1) is not required to
accept the s.
Index: run-program.test.sh
===================================================================
RCS file: /cvsroot/sbcl/sbcl/tests/run-program.test.sh,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- run-program.test.sh 16 Dec 2007 00:23:59 -0000 1.14
+++ run-program.test.sh 22 Dec 2007 22:07:11 -0000 1.15
@@ -90,7 +90,7 @@
;; fully buffered.)
(let ((str (with-output-to-string (s)
(run-program "/bin/sh"
- '("-c" "(echo Foo; sleep 2s; echo Bar)>&2")
+ '("-c" "(echo Foo; sleep 2; echo Bar)>&2")
:output s :search t :error :output :wait t))))
(assert (string= str (format nil "Foo~%Bar~%"))))
|