Remove newly-useless nesting in the src directory
author |
Steve Losh <steve@stevelosh.com> |
date |
Sat, 20 Aug 2016 22:06:27 +0000 |
parents |
8897604cb9dd |
children |
5977919552ee |
#+ecl (setf compiler:*user-cc-flags* "-Wno-shift-negative-value")
(declaim (optimize (debug 3) (safety 3) (speed 0)))
(let ((*standard-output* (make-broadcast-stream))
; (*error-output* (make-broadcast-stream))
)
(ql:quickload 'bones)
;; Recompile to ensure we get the right optimize declarations...
(asdf:load-system 'bones :force t)
(ql:quickload 'bones-test))
(time (prog1
(asdf:test-system 'bones)
(terpri)))
(terpri)
(quit)