From 638f50e63fdb2f0521301db2c8f8916d81e8773e Mon Sep 17 00:00:00 2001 From: pfdietz <pfdietz@localhost> Date: Sat, 14 May 2005 02:19:06 +0000 Subject: [PATCH] Fixed three check-type-error error cases --- ansi-tests/fboundp.lsp | 13 +++++++++++-- ansi-tests/fdefinition.lsp | 11 ++++++++++- ansi-tests/fmakunbound.lsp | 11 ++++++++++- 3 files changed, 31 insertions(+), 4 deletions(-) diff --git a/ansi-tests/fboundp.lsp b/ansi-tests/fboundp.lsp index 1ec57151..b7811a41 100644 --- a/ansi-tests/fboundp.lsp +++ b/ansi-tests/fboundp.lsp @@ -87,6 +87,15 @@ t) (deftest fboundp.error.10 - (check-type-error #'(lambda (x) (fboundp `(setf ,x))) - #'symbolp) + (loop for x in *mini-universe* + unless (symbolp x) + nconc + (handler-case + (list x (fboundp `(setf ,x))) + (type-error (c) + (assert (not (typep (type-error-datum c) + (type-error-expected-type c)))) + nil) + (error (c) (list (list x c))))) nil) + diff --git a/ansi-tests/fdefinition.lsp b/ansi-tests/fdefinition.lsp index 97781a49..268a4086 100644 --- a/ansi-tests/fdefinition.lsp +++ b/ansi-tests/fdefinition.lsp @@ -40,7 +40,16 @@ nil) (deftest fdefinition.error.8 - (check-type-error #'(lambda (x) (fdefinition `(setf ,x))) #'symbolp) + (loop for x in *mini-universe* + unless (symbolp x) + nconc + (handler-case + (list x (fdefinition `(setf ,x))) + (type-error (c) + (assert (not (typep (type-error-datum c) + (type-error-expected-type c)))) + nil) + (error (c) (list (list x c))))) nil) ;;; Non-error cases diff --git a/ansi-tests/fmakunbound.lsp b/ansi-tests/fmakunbound.lsp index e9c3b381..026afada 100644 --- a/ansi-tests/fmakunbound.lsp +++ b/ansi-tests/fmakunbound.lsp @@ -69,5 +69,14 @@ t) (deftest fmakunbound.error.7 - (check-type-error #'(lambda (x) (fmakunbound `(setf ,x))) #'symbolp) + (loop for x in *mini-universe* + unless (symbolp x) + nconc + (handler-case + (list x (fmakunbound `(setf ,x))) + (type-error (c) + (assert (not (typep (type-error-datum c) + (type-error-expected-type c)))) + nil) + (error (c) (list (list x c))))) nil) \ No newline at end of file -- GitLab