Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

Commit

Permalink
some more fix to testscr.ros
Browse files Browse the repository at this point in the history
  • Loading branch information
guicho271828 committed Jun 13, 2016
1 parent dbe0401 commit 2959bf8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions inlined-generic-function.test.asd
Expand Up @@ -20,5 +20,9 @@
:components ((:module "t"
:components
((:file "package"))))
:perform (test-op :after (op c) (eval (read-from-string "(every #'fiveam::TEST-PASSED-P (5am:run :inlined-generic-function))"))
))
:perform (test-op :after (op c)
(eval
(read-from-string
"(let ((res (5am:run :inlined-generic-function)))
(5am:explain! res)
(every #'5am::TEST-PASSED-P res))"))))
6 changes: 5 additions & 1 deletion testscr.ros
Expand Up @@ -9,7 +9,11 @@ exec ros -Q -- $0 "$@"
(uiop:quit (if (handler-case
(progn
(ql:quickload :inlined-generic-function.test)
(eval (read-from-string "(every #'fiveam::TEST-PASSED-P (5am:run :inlined-generic-function))")))
(eval
(read-from-string
"(let ((res (5am:run :inlined-generic-function)))
(5am:explain! res)
(every #'fiveam::TEST-PASSED-P res))")))
(serious-condition (c)
(describe c)
(uiop:quit 2)))
Expand Down

0 comments on commit 2959bf8

Please sign in to comment.