1.0.42.28: package locks to guard against DEFMACRO -> DEFUN and vice-versa
[sbcl.git] / tests / run-program.impure.lisp
index b6b38cf..4bba18e 100644 (file)
@@ -84,8 +84,8 @@
 (defun read-linish (stream)
   (with-output-to-string (s)
     (loop for c = (read-char stream)
-       while (and c (not (eq #\newline c)) (not (eq #\return c)))
-       do (write-char c s))))
+          while (and c (not (eq #\newline c)) (not (eq #\return c)))
+          do (write-char c s))))
 
 (defun assert-ed (command response)
   (when command
 (unwind-protect
      (with-test (:name :run-program-ed)
        (assert-ed nil "4")
-       (assert-ed ".s/bar/baz/g" "")
+       (assert-ed ".s/bar/baz/g" #-sunos "" #+sunos nil)
        (assert-ed "w" "4")
        (assert-ed "q" nil)
        (process-wait *ed*)