From 443737cd4244bb5166aeb332279a4efde7c060a8 Mon Sep 17 00:00:00 2001 From: pfdietz <pfdietz@localhost> Date: Sat, 2 Aug 2003 18:35:19 +0000 Subject: [PATCH] Tests updates due to feedback from Martin Simmons. Added more error tests for assoc/assoc-if/assoc-if-not. Annotated standardized package nickname tests. Removed test that assumed REPEAT loop clause could appear later in the loop (too many complaints about this, and the standard is inconsistent.) Added tests for LOOP ... SUM into various types. I didn't add some COMPLEX tests here that were suggested, since I didn't think they were correct. I am really not liking the (complex rat 0) ==> rat rule of CL complex numbers. Changed "RT" to "REGRESSION-TEST" in a test in packages-03.lsp. Fixed error report in random remove test so it works better with delete. Changed :metaclass in substandard-generic-function (I am still not entirely convinced this is correct.) --- ansi-tests/assoc-if-not.lsp | 7 ++++++ ansi-tests/assoc-if.lsp | 8 +++++++ ansi-tests/assoc.lsp | 7 ++++++ ansi-tests/cl-symbol-names.lsp | 3 +++ ansi-tests/cl-symbols.lsp | 3 +++ ansi-tests/defgeneric.lsp | 5 +++- ansi-tests/loop10.lsp | 44 ++++++++++++++++++++++++++++++++++ ansi-tests/loop11.lsp | 10 +++++--- ansi-tests/notes.lsp | 3 ++- ansi-tests/packages-03.lsp | 2 +- ansi-tests/remove-aux.lsp | 2 +- 11 files changed, 87 insertions(+), 7 deletions(-) diff --git a/ansi-tests/assoc-if-not.lsp b/ansi-tests/assoc-if-not.lsp index abc545fd..e2b70e77 100644 --- a/ansi-tests/assoc-if-not.lsp +++ b/ansi-tests/assoc-if-not.lsp @@ -140,3 +140,10 @@ (classify-error (assoc-if-not #'identity '((a . b) . c))) type-error) +(deftest assoc-if-not.error.12 + (classify-error (assoc-if-not #'identity ((a . b) :bad (c . d)))) + type-error) + +(deftest assoc-if-not.error.13 + (classify-error (assoc-if-not #'identity 'y)) + type-error) diff --git a/ansi-tests/assoc-if.lsp b/ansi-tests/assoc-if.lsp index c148283b..be40c679 100644 --- a/ansi-tests/assoc-if.lsp +++ b/ansi-tests/assoc-if.lsp @@ -138,3 +138,11 @@ (deftest assoc-if.error.11 (classify-error (assoc-if #'null '((a . b) . c))) type-error) + +(deftest assoc-if.error.12 + (classify-error (assoc-if #'null ((a . b) :bad (c . d)))) + type-error) + +(deftest assoc-if.error.13 + (classify-error (assoc-if #'null 'y)) + type-error) diff --git a/ansi-tests/assoc.lsp b/ansi-tests/assoc.lsp index 8d87b7b7..9c28003a 100644 --- a/ansi-tests/assoc.lsp +++ b/ansi-tests/assoc.lsp @@ -268,3 +268,10 @@ (classify-error (assoc 'z '((a . b) . c))) type-error) +(deftest assoc.error.11 + (classify-error (assoc 'z '((a . b) :bad (c . d)))) + type-error) + +(deftest assoc.error.12 + (classify-error (assoc 'x 'y)) + type-error) diff --git a/ansi-tests/cl-symbol-names.lsp b/ansi-tests/cl-symbol-names.lsp index 1bfa0d64..9d7c06df 100644 --- a/ansi-tests/cl-symbol-names.lsp +++ b/ansi-tests/cl-symbol-names.lsp @@ -1174,7 +1174,9 @@ file-length file-namestring file-position + file-string-length file-write-date + fill find find-all-symbols find-if @@ -1387,6 +1389,7 @@ probe-file proclaim provide + random random-state-p rassoc rassoc-if diff --git a/ansi-tests/cl-symbols.lsp b/ansi-tests/cl-symbols.lsp index a60cba8f..dacc5e00 100644 --- a/ansi-tests/cl-symbols.lsp +++ b/ansi-tests/cl-symbols.lsp @@ -994,14 +994,17 @@ ;;; Standardized packages have the right names, nicknames (deftest keyword-package-nicknames + :notes :standardized-package-nicknames (package-nicknames (find-package "KEYWORD")) nil) (deftest common-lisp-package-nicknames + :notes :standardized-package-nicknames (package-nicknames (find-package "COMMON-LISP")) ("CL")) (deftest common-lisp-user-package-nicknames + :notes :standardized-package-nicknames (package-nicknames (find-package "COMMON-LISP-USER")) ("CL-USER")) diff --git a/ansi-tests/defgeneric.lsp b/ansi-tests/defgeneric.lsp index 3e5bf421..5d03fb3f 100644 --- a/ansi-tests/defgeneric.lsp +++ b/ansi-tests/defgeneric.lsp @@ -763,9 +763,12 @@ nil a nil a a) ;;; I'm not sure this one is proper +;;; Added :metaclass at prompting of Martin Simmons (when (subtypep (class-of (find-class 'standard-generic-function)) 'standard-class) - (defclass substandard-generic-function (standard-generic-function) ()) + (defclass substandard-generic-function (standard-generic-function) () + (:metaclass #.(class-name (class-of + (find-class 'standard-generic-function))))) (deftest defgeneric.30 (let ((fn (eval '(defgeneric defgeneric.fun.29 (x) diff --git a/ansi-tests/loop10.lsp b/ansi-tests/loop10.lsp index c34ea300..3198e858 100644 --- a/ansi-tests/loop10.lsp +++ b/ansi-tests/loop10.lsp @@ -448,3 +448,47 @@ (deftest loop.10.93 (loop for i from 1 to 4 summing (return 100)) 100) + +(deftest loop.10.94 + (loop for i in nil sum i of-type integer) + 0) + +(deftest loop.10.95 + (loop for i in nil sum i of-type fixnum) + 0) + +(deftest loop.10.96 + (loop for i in nil sum i of-type bit) + 0) + +(deftest loop.10.97 + (loop for i in nil sum i of-type (integer 0 100)) + 0) + +(deftest loop.10.98 + (loop for i in nil sum i of-type (integer -100 0)) + 0) + +(deftest loop.10.99 + (loop for i in nil sum i of-type (integer -100 100)) + 0) + +(deftest loop.10.100 + (loop for i in nil sum i of-type (and integer (real -100.0 100.0))) + 0) + +(deftest loop.10.101 + (loop for i in nil sum i of-type short-float) + 0.0s0) + +(deftest loop.10.102 + (loop for i in nil sum i of-type single-float) + 0.0f0) + +(deftest loop.10.103 + (loop for i in nil sum i of-type double-float) + 0.0d0) + +(deftest loop.10.104 + (loop for i in nil sum i of-type long-float) + 0.0l0) diff --git a/ansi-tests/loop11.lsp b/ansi-tests/loop11.lsp index 3ff8f312..4f614fd2 100644 --- a/ansi-tests/loop11.lsp +++ b/ansi-tests/loop11.lsp @@ -53,9 +53,13 @@ (loop repeat 3 for i in '(a b c d e) collect i) (a b c)) -(deftest loop.11.9 - (loop for i in '(a b c d e) collect i repeat 3) - (a b c)) +;;; Enough implementors have complained about this test that +;;; I'm removing it. The standard is self-contradictory +;;; on whether REPEAT can occur later in a LOOP form. + +;;; (deftest loop.11.9 +;;; (loop for i in '(a b c d e) collect i repeat 3) +;;; (a b c)) ;;; Tests of WHILE diff --git a/ansi-tests/notes.lsp b/ansi-tests/notes.lsp index f366343a..08abd3e6 100644 --- a/ansi-tests/notes.lsp +++ b/ansi-tests/notes.lsp @@ -14,4 +14,5 @@ (defnote :nil-vectors-are-strings "Assume that (VECTOR NIL) objects are strings.") - +(defnote :standardized-package-nicknames + "The standardized package nicknames specified in section 11 of ANSI CL are exclusive (disputed).") diff --git a/ansi-tests/packages-03.lsp b/ansi-tests/packages-03.lsp index 79488a5c..86d3972b 100644 --- a/ansi-tests/packages-03.lsp +++ b/ansi-tests/packages-03.lsp @@ -21,7 +21,7 @@ (find-package "CL-USER") (find-package "KEYWORD") (find-package "A") - (find-package "RT") + (find-package "REGRESSION-TEST") (find-package "CL-TEST") (find-package "B")) (list-all-packages)) diff --git a/ansi-tests/remove-aux.lsp b/ansi-tests/remove-aux.lsp index 634e7769..a3c5e38f 100644 --- a/ansi-tests/remove-aux.lsp +++ b/ansi-tests/remove-aux.lsp @@ -216,7 +216,7 @@ (seq2 (copy-seq seq)) (seq1r (apply (the function tested-fn) element seq1 arg-list)) (seq2r (apply (the function check-fn) element seq2 arg-list))) - (setq *remove-fail-args* (list* element seq1 arg-list)) + (setq *remove-fail-args* (list* element seq arg-list)) (cond ((and pure (not (equalp seq seq1))) :fail1) ((and pure (not (equalp seq seq2))) :fail2) -- GitLab