Skip to content

Commit 21695ab

Browse files
committed
changing each package to its own top level form, so one will be defined before the other (for clisp) (hopefully)
1 parent 8ec7bc7 commit 21695ab

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

packages.lisp

+7-2
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,15 @@
8686
(:export #:assertion-pass #:assertion-fail
8787
#:all-tests-start #:all-tests-complete
8888
#:test-start #:test-complete
89-
:results)
89+
:results)
9090
;; Utility predicates
91-
(:export :logically-equal :set-equal))
91+
(:export :logically-equal :set-equal)))
9292

93+
(handler-bind
94+
;; fixes sbcl SUPER warnings that prevent automatic fasl loading
95+
((warning (lambda (c)
96+
(format *error-output* "~A~%~S" c c)
97+
(muffle-warning c))))
9398
(defpackage :lisp-unit2-asserts
9499
(:import-from :lisp-unit2
95100
:assert-eq :assert-eql :assert-equal :assert-equalp

0 commit comments

Comments
 (0)