mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Don't disable ldb with --break-on-failure
This commit is contained in:
parent
1809b3da14
commit
71c3eee142
|
|
@ -23,6 +23,8 @@
|
|||
(setf *break-on-failure* break-on-failure
|
||||
*break-on-expected-failure* break-on-expected-failure
|
||||
*break-on-error* break-on-error)
|
||||
(when *break-on-error*
|
||||
(enable-debugger))
|
||||
(when interpret
|
||||
(setf *test-evaluator-mode* :interpret)
|
||||
(push :interpreter *features*))
|
||||
|
|
|
|||
|
|
@ -457,6 +457,8 @@
|
|||
(setf *input-manifest*
|
||||
(if manifest (read manifest) :ignore))))
|
||||
(format t "// Running pure tests (~a)~%" test-fun)
|
||||
(when *break-on-error*
|
||||
(enable-debugger))
|
||||
(let ((*failures* nil)
|
||||
;; in case somebody corrupts CL-USER's use list, of course
|
||||
(standard-use-list (package-use-list "CL-USER")))
|
||||
|
|
|
|||
Loading…
Reference in a new issue