whitespace in tests
authorNikodemus Siivola <nikodemus@random-state.net>
Tue, 14 Jun 2011 10:24:41 +0000 (13:24 +0300)
committerNikodemus Siivola <nikodemus@random-state.net>
Tue, 14 Jun 2011 10:24:41 +0000 (13:24 +0300)
tests/debug.impure.lisp

index 6ffa8d3..74aec92 100644 (file)
 (defvar *compile-nil-non-tc* (compile nil '(lambda (y) (cons (funcall *compile-nil-error* y) nil))))
 (with-test (:name (:compile nil))
   (assert (verify-backtrace (lambda () (funcall *compile-nil-non-tc* 13))
-                           '(((lambda (x)) 13)
-                             ((lambda (y)) 13)))))
+                            '(((lambda (x)) 13)
+                              ((lambda (y)) 13)))))
 
 (with-test (:name :clos-slot-typecheckfun-named)
   (assert
 
 (with-test (:name (trace :simple))
   (let ((out (with-output-to-string (*trace-output*)
-              (trace trace-this)
-              (assert (eq 'ok (trace-this)))
-              (untrace))))
+               (trace trace-this)
+               (assert (eq 'ok (trace-this)))
+               (untrace))))
     (assert (search "TRACE-THIS" out))
     (assert (search "returned OK" out))))
 
   (test-inifinite-error-protection))
 
 (with-test (:name (infinite-error-protection :thread)
-                 :skipped-on '(not :sb-thread))
+                  :skipped-on '(not :sb-thread))
   (enable-debugger)
   (let ((thread (sb-thread:make-thread #'test-inifinite-error-protection)))
     (loop while (sb-thread:thread-alive-p thread))))