Skip to content
Snippets Groups Projects
Commit 0c1e4f6d authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

More test frobbing for SBCL/Windows

parent bdde8a36
No related branches found
No related tags found
No related merge requests found
......@@ -122,8 +122,9 @@
(print-condition-backtrace c))
(return nil))))
(with-open-file (stream (component-pathname file)
:direction :output :if-exists :supersede
:direction :output :if-exists :rename-and-delete
:if-does-not-exist :error)
;; SBCL on Windows hates :supersede here
(print start-time stream)
t)))
(incf file-failures)
......
......@@ -5,7 +5,7 @@
(defun dewindowize (x)
(block ()
(setf x (remove (code-char 13) x))
#+(and sbcl os-windows) ;; buggy implementations output extra space on Windows. Also old CCL.
;;#+(and sbcl os-windows) ;; buggy implementations output extra space on Windows. Also old CCL.
(when (eql #\space (last-char x))
(return (subseq x 0 (1- (length x)))))
x))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment