Don't disable ldb with --break-on-failure

This commit is contained in:
Stas Boukarev 2026-02-21 10:31:04 +03:00
parent 1809b3da14
commit 71c3eee142
2 changed files with 4 additions and 0 deletions

View file

@ -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*))

View file

@ -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")))