test/run.lisp @ 8897604cb9dd

Clean up the test running and makefile
author Steve Losh <steve@stevelosh.com>
date Sat, 20 Aug 2016 21:38:54 +0000
parents 8a247663fec5
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)