diff --git a/test/fun-with-undefined-locals.lisp b/test/fun-with-undefined-locals.lisp new file mode 100644 index 0000000000000000000000000000000000000000..a0df97dc19bc3e08ee32f34855998c178a9acf09 --- /dev/null +++ b/test/fun-with-undefined-locals.lisp @@ -0,0 +1,7 @@ +(defpackage fun-with-undefined-locals-package + (:use :common-lisp)) + +(in-package :fun-with-undefined-locals-package) + +(defun foo () + (+ a b)) diff --git a/test/test-deferred-warnings.script b/test/test-deferred-warnings.script index 3ec10ff3e994afb9991e76a359cdae9a2f165483..1f62b418efa4d011b7797d2bc4dbc551a924dbd8 100644 --- a/test/test-deferred-warnings.script +++ b/test/test-deferred-warnings.script @@ -28,6 +28,8 @@ :depends-on (:unintern-foo) :serial t :components ((:file "use-setf-foo") (:file "defsetf-foo"))) +(def-test-system :undefined-variables + :components ((:file "fun-with-undefined-locals"))) (DBG :tdw0 *compile-file-warnings-behaviour*) (handler-bind @@ -95,3 +97,18 @@ ((or compile-file-error compile-warned-error) () t) ;;(t (c) (DBG :ustdf0 c)) (:no-error (&rest values) (DBG :ustdf1 values) nil))) + +(assert + (flet ((expected-error (x) + (format t "Expected error type: ~a" (type-of x)) + t)) + (handler-case + (let ((*compile-file-warnings-behaviour* :error)) + (trace compile-file) + (load-system :undefined-variables) + nil) + (compile-failed-error (x) (expected-error x)) + (compile-file-error (x) (expected-error x)) + (error (x) + (format t "Unexpected error type: ~a" (type-of x)) + nil))))