Rename the project
I really liked the old name, but there's like sixteen Lisp things with
"Bone"-related names so I'll make the sacrifice.
    
        | author | Steve Losh <steve@stevelosh.com> | 
    
        | date | Sat, 20 Aug 2016 22:25:47 +0000 | 
    
        | parents | 8897604cb9dd | 
    
        | children | 221dc09d73f9 | 
#+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 'temperance)
  ;; Recompile to ensure we get the right optimize declarations...
  (asdf:load-system 'temperance :force t)
  (ql:quickload 'temperance-test))
(time (prog1
          (asdf:test-system 'temperance)
        (terpri)))
(terpri)
(quit)