Skip to content

Commit

Permalink
handle error in test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
jbouwman committed Dec 25, 2024
1 parent 88a760e commit 24a8c53
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions etc/test.lisp
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
(require :asdf)

(load "epsilon.asd")

(handler-case
(progn
(require :asdf)
(load "epsilon.asd")
(asdf:load-system "epsilon/tests"))
(asdf:load-system "epsilon/tests")
(error (condition)
(format *error-output "~A~%" condition)
(sb-debug:print-backtrace :stream *error-output*)))
Expand Down

0 comments on commit 24a8c53

Please sign in to comment.