X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fdebug.impure.lisp;h=03773346a4e15bf828c2274ec20a6c81ea03e788;hb=6d94caa24f68a3df5ac73e7072cea3e62e9d87f5;hp=a3f3fbbba5884adaf9cf8553e12ca8ebddbf7c97;hpb=6ddaf294e5a7e3b1792ed1d9c342894c38538773;p=sbcl.git diff --git a/tests/debug.impure.lisp b/tests/debug.impure.lisp index a3f3fbb..0377334 100644 --- a/tests/debug.impure.lisp +++ b/tests/debug.impure.lisp @@ -139,7 +139,8 @@ (declare (optimize (speed 1) (debug 2))) ; no tail call elimination (funcall fun))) - (with-test (:fails-on '(or :alpha)) ; bug 346 + (with-test (:name (:undefined-function :bug-346) + :fails-on '(or :alpha)) ; bug 346 (assert (verify-backtrace (lambda () (test #'optimized)) (list *undefined-function-frame* @@ -147,7 +148,8 @@ ;; bug 353: This test fails at least most of the time for x86/linux ;; ca. 0.8.20.16. -- WHN - (with-test (:fails-on '(or (and :x86 :linux) :alpha)) + (with-test (:name (:undefined-function :bug-356) + :fails-on '(or (and :x86 :linux) :alpha)) (assert (verify-backtrace (lambda () (test #'not-optimized)) (list *undefined-function-frame* @@ -175,17 +177,20 @@ (test (fun) (declare (optimize (speed 1) (debug 2))) ; no tail call elimination (funcall fun))) - (with-test (:fails-on '(or :alpha)) ; bug 346 + (with-test (:name (:divide-by-zero :bug-346) + :fails-on '(or :alpha)) ; bug 346 (assert (verify-backtrace (lambda () (test #'optimized)) (list '(/ 42 &rest) (list '(flet test) #'optimized))))) - (with-test (:fails-on '(or :alpha)) ; bug 346 + (with-test (:name (:divide-by-zero :bug-356) + :fails-on '(or :alpha)) ; bug 356 (assert (verify-backtrace (lambda () (test #'not-optimized)) (list '(/ 42 &rest) '((flet not-optimized)) (list '(flet test) #'not-optimized)))))) -(with-test (:fails-on '(or (and :x86 :linux) :alpha)) +(with-test (:name (:throw :no-such-tag) + :fails-on '(or (and :x86 :linux) (and :x86 :freebsd) :alpha :mips)) (progn (defun throw-test () (throw 'no-such-tag t)) @@ -226,7 +231,9 @@ (defbt 5 (&optional (opt (oops))) (list opt)) -(with-test (:fails-on '(and :x86 :linux)) +;;; FIXME: This test really should be broken into smaller pieces +(with-test (:name (:backtrace :misc) + :fails-on '(and :x86 :linux)) (macrolet ((with-details (bool &body body) `(let ((sb-debug:*show-entry-point-details* ,bool)) ,@body))) @@ -338,13 +345,18 @@ (assert (search "returned OK" out))) ;;; bug 379 -#-(and ppc darwin) -(let ((out (with-output-to-string (*trace-output*) - (trace trace-this :encapsulate nil) - (assert (eq 'ok (trace-this))) - (untrace)))) - (assert (search "TRACE-THIS" out)) - (assert (search "returned OK" out))) +;;; This is not a WITH-TEST :FAILS-ON PPC DARWIN since there are +;;; suspicions that the breakpoint trace might corrupt the whole image +;;; on that platform. +#-(and (or ppc x86) darwin) +(with-test (:name (trace :encapsulate nil) + :fails-on '(or ppc sparc)) + (let ((out (with-output-to-string (*trace-output*) + (trace trace-this :encapsulate nil) + (assert (eq 'ok (trace-this))) + (untrace)))) + (assert (search "TRACE-THIS" out)) + (assert (search "returned OK" out)))) ;;;; test infinite error protection