From d603155853fa177aa741cde2db361ff0480bcd58 Mon Sep 17 00:00:00 2001 From: pfdietz <pfdietz@localhost> Date: Sun, 20 Jun 2004 20:06:23 +0000 Subject: [PATCH] Move cons-related aux functions from ansi-aux.lsp to cons-aux.lsp. Update the cons-related files to compile-and-load cons-aux.lsp, if necessary. --- ansi-tests/acons.lsp | 2 + ansi-tests/adjoin.lsp | 2 + ansi-tests/ansi-aux.lsp | 514 ------------------------------ ansi-tests/append.lsp | 1 + ansi-tests/assoc-if-not.lsp | 2 + ansi-tests/assoc-if.lsp | 1 + ansi-tests/assoc.lsp | 2 + ansi-tests/atom.lsp | 2 + ansi-tests/butlast.lsp | 2 + ansi-tests/cons-aux.lsp | 515 +++++++++++++++++++++++++++++++ ansi-tests/cons-test-01.lsp | 2 + ansi-tests/cons-test-03.lsp | 2 + ansi-tests/cons-test-05.lsp | 2 + ansi-tests/cons.lsp | 2 + ansi-tests/consp.lsp | 2 + ansi-tests/copy-alist.lsp | 2 + ansi-tests/copy-list.lsp | 2 + ansi-tests/copy-tree.lsp | 2 + ansi-tests/cxr.lsp | 2 + ansi-tests/endp.lsp | 3 +- ansi-tests/get-properties.lsp | 2 + ansi-tests/getf.lsp | 2 + ansi-tests/intersection.lsp | 2 + ansi-tests/last.lsp | 2 + ansi-tests/ldiff.lsp | 2 + ansi-tests/list-length.lsp | 2 + ansi-tests/list.lsp | 2 + ansi-tests/listp.lsp | 2 + ansi-tests/load-cons.lsp | 2 +- ansi-tests/make-list.lsp | 2 + ansi-tests/mapc.lsp | 2 + ansi-tests/mapcan.lsp | 2 + ansi-tests/mapcar.lsp | 2 + ansi-tests/mapcon.lsp | 2 + ansi-tests/mapl.lsp | 2 + ansi-tests/maplist.lsp | 2 + ansi-tests/member-if-not.lsp | 2 + ansi-tests/member-if.lsp | 2 + ansi-tests/member.lsp | 2 + ansi-tests/nbutlast.lsp | 2 + ansi-tests/nconc.lsp | 2 + ansi-tests/nintersection.lsp | 2 + ansi-tests/nreconc.lsp | 2 + ansi-tests/nset-difference.lsp | 2 + ansi-tests/nset-exclusive-or.lsp | 2 + ansi-tests/nsublis.lsp | 2 + ansi-tests/nsubst-if-not.lsp | 2 + ansi-tests/nsubst-if.lsp | 2 + ansi-tests/nsubst.lsp | 1 + ansi-tests/nth.lsp | 2 + ansi-tests/nthcdr.lsp | 2 + ansi-tests/nunion.lsp | 2 + ansi-tests/pairlis.lsp | 2 + ansi-tests/pop.lsp | 3 +- ansi-tests/push.lsp | 2 + ansi-tests/pushnew.lsp | 2 + ansi-tests/rassoc-if-not.lsp | 1 + ansi-tests/rassoc-if.lsp | 2 + ansi-tests/remf.lsp | 2 + ansi-tests/rest.lsp | 2 + ansi-tests/revappend.lsp | 2 + ansi-tests/rplaca.lsp | 2 + ansi-tests/rplacd.lsp | 2 + ansi-tests/set-difference.lsp | 2 + ansi-tests/set-exclusive-or.lsp | 2 + ansi-tests/sublis.lsp | 2 + ansi-tests/subsetp.lsp | 2 + ansi-tests/subst-if-not.lsp | 2 + ansi-tests/subst-if.lsp | 2 + ansi-tests/subst.lsp | 2 + ansi-tests/tailp.lsp | 2 + ansi-tests/tree-equal.lsp | 2 + ansi-tests/union.lsp | 2 + 73 files changed, 651 insertions(+), 518 deletions(-) diff --git a/ansi-tests/acons.lsp b/ansi-tests/acons.lsp index cc193d4c..d4a6ca3b 100644 --- a/ansi-tests/acons.lsp +++ b/ansi-tests/acons.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest acons.1 (let* ((x (copy-tree '((c . d) (e . f)))) (xcopy (make-scaffold-copy x)) diff --git a/ansi-tests/adjoin.lsp b/ansi-tests/adjoin.lsp index 669881f4..c0848757 100644 --- a/ansi-tests/adjoin.lsp +++ b/ansi-tests/adjoin.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest adjoin.1 (adjoin 'a nil) (a)) diff --git a/ansi-tests/ansi-aux.lsp b/ansi-tests/ansi-aux.lsp index 1e4d0b21..20ec6bc7 100644 --- a/ansi-tests/ansi-aux.lsp +++ b/ansi-tests/ansi-aux.lsp @@ -363,54 +363,6 @@ the condition to go uncaught if it cannot be classified." (handler-case (and (stringp (write-to-string obj)) t) (condition (c) (declare (ignore c)) nil))))) -;;; -;;; A scaffold is a structure that is used to remember the object -;;; identities of the cons cells in a (noncircular) data structure. -;;; This lets us check if the data structure has been changed by -;;; an operation. -;;; - -(defstruct scaffold - node - car - cdr) - -(defun make-scaffold-copy (x) - "Make a tree that will be used to check if a tree has been changed." - (if - (consp x) - (make-scaffold :node x - :car (make-scaffold-copy (car x)) - :cdr (make-scaffold-copy (cdr x))) - (make-scaffold :node x - :car nil - :cdr nil))) - -(defun check-scaffold-copy (x xcopy) - "Return t if xcopy were produced from x by make-scaffold-copy, - and none of the cons cells in the tree rooted at x have been - changed." - - (and (eq x (scaffold-node xcopy)) - (or - (not (consp x)) - (and - (check-scaffold-copy (car x) (scaffold-car xcopy)) - (check-scaffold-copy (cdr x) (scaffold-cdr xcopy)))))) - -(defun create-c*r-test (n) - (cond - ((<= n 0) 'none) - (t - (cons (create-c*r-test (1- n)) - (create-c*r-test (1- n)))))) - -(defun nth-1-body (x) - (loop - for e in x - and i from 0 - count (not (eqt e (nth i x))))) - ;;; ;;; The function SUBTYPEP should return two generalized booleans. ;;; This auxiliary function returns booleans instead @@ -862,472 +814,6 @@ the condition to go uncaught if it cannot be classified." (defun even-size-p (a) (some #'evenp (array-dimensions a))) -(defun check-cons-copy (x y) - "Check that the tree x is a copy of the tree y, - returning t if it is, nil if not." - (cond - ((consp x) - (and (consp y) - (not (eqt x y)) - (check-cons-copy (car x) (car y)) - (check-cons-copy (cdr x) (cdr y)))) - ((eqt x y) t) - (t nil))) - -(defun check-sublis (a al &key (key 'no-key) test test-not) - "Apply sublis al a with various keys. Check that - the arguments are not themselves changed. Return nil - if the arguments do get changed." - (setf a (copy-tree a)) - (setf al (copy-tree al)) - (let ((acopy (make-scaffold-copy a)) - (alcopy (make-scaffold-copy al))) - (let ((as - (apply #'sublis al a - `(,@(when test `(:test ,test)) - ,@(when test-not `(:test-not ,test-not)) - ,@(unless (eqt key 'no-key) `(:key ,key)))))) - (and - (check-scaffold-copy a acopy) - (check-scaffold-copy al alcopy) - as)))) - -(defun check-nsublis (a al &key (key 'no-key) test test-not) - "Apply nsublis al a, copying these arguments first." - (setf a (copy-tree a)) - (setf al (copy-tree al)) - (let ((as - (apply #'sublis (copy-tree al) (copy-tree a) - `(,@(when test `(:test ,test)) - ,@(when test-not `(:test-not ,test-not)) - ,@(unless (eqt key 'no-key) `(:key ,key)))))) - as)) - -(defun check-subst (new old tree &key (key 'no-key) test test-not) - "Call subst new old tree, with keyword arguments if present. - Check that the arguments are not changed." - (setf new (copy-tree new)) - (setf old (copy-tree old)) - (setf tree (copy-tree tree)) - (let ((newcopy (make-scaffold-copy new)) - (oldcopy (make-scaffold-copy old)) - (treecopy (make-scaffold-copy tree))) - (let ((result - (apply #'subst new old tree - `(,@(unless (eqt key 'no-key) `(:key ,key)) - ,@(when test `(:test ,test)) - ,@(when test-not `(:test-not ,test-not)))))) - (and (check-scaffold-copy new newcopy) - (check-scaffold-copy old oldcopy) - (check-scaffold-copy tree treecopy) - result)))) - - -(defun check-subst-if (new pred tree &key (key 'no-key)) - "Call subst-if new pred tree, with various keyword arguments - if present. Check that the arguments are not changed." - (setf new (copy-tree new)) - (setf tree (copy-tree tree)) - (let ((newcopy (make-scaffold-copy new)) - (predcopy (make-scaffold-copy pred)) - (treecopy (make-scaffold-copy tree))) - (let ((result - (apply #'subst-if new pred tree - (unless (eqt key 'no-key) `(:key ,key))))) - (and (check-scaffold-copy new newcopy) - (check-scaffold-copy pred predcopy) - (check-scaffold-copy tree treecopy) - result)))) - -(defun check-subst-if-not (new pred tree &key (key 'no-key)) - "Call subst-if-not new pred tree, with various keyword arguments - if present. Check that the arguments are not changed." - (setf new (copy-tree new)) - (setf tree (copy-tree tree)) - (let ((newcopy (make-scaffold-copy new)) - (predcopy (make-scaffold-copy pred)) - (treecopy (make-scaffold-copy tree))) - (let ((result - (apply #'subst-if-not new pred tree - (unless (eqt key 'no-key) `(:key ,key))))) - (and (check-scaffold-copy new newcopy) - (check-scaffold-copy pred predcopy) - (check-scaffold-copy tree treecopy) - result)))) - -(defun check-nsubst (new old tree &key (key 'no-key) test test-not) - "Call nsubst new old tree, with keyword arguments if present." - (setf new (copy-tree new)) - (setf old (copy-tree old)) - (setf tree (copy-tree tree)) - (apply #'nsubst new old tree - `(,@(unless (eqt key 'no-key) `(:key ,key)) - ,@(when test `(:test ,test)) - ,@(when test-not `(:test-not ,test-not))))) - -(defun check-nsubst-if (new pred tree &key (key 'no-key)) - "Call nsubst-if new pred tree, with keyword arguments if present." - (setf new (copy-tree new)) - (setf tree (copy-tree tree)) - (apply #'nsubst-if new pred tree - (unless (eqt key 'no-key) `(:key ,key)))) - -(defun check-nsubst-if-not (new pred tree &key (key 'no-key)) - "Call nsubst-if-not new pred tree, with keyword arguments if present." - (setf new (copy-tree new)) - (setf tree (copy-tree tree)) - (apply #'nsubst-if-not new pred tree - (unless (eqt key 'no-key) `(:key ,key)))) - -(defun check-copy-list-copy (x y) - "Check that y is a copy of the list x." - (if - (consp x) - (and (consp y) - (not (eqt x y)) - (eqt (car x) (car y)) - (check-copy-list-copy (cdr x) (cdr y))) - (and (eqt x y) t))) - -(defun check-copy-list (x) - "Apply copy-list, checking that it properly copies, - and checking that it does not change its argument." - (let ((xcopy (make-scaffold-copy x))) - (let ((y (copy-list x))) - (and - (check-scaffold-copy x xcopy) - (check-copy-list-copy x y) - y)))) - -(defun append-6-body () - (let* ((cal (min 2048 call-arguments-limit)) - (step (max 1 (floor (/ cal) 64)))) - (loop - for n from 0 - below cal - by step - count - (not - (equal - (apply #'append (loop for i from 1 to n - collect '(a))) - (make-list n :initial-element 'a)))))) - -(defun is-intersection (x y z) - "Check that z is the intersection of x and y." - (and - (listp x) - (listp y) - (listp z) - (loop for e in x - always (or (not (member e y)) - (member e z))) - (loop for e in y - always (or (not (member e x)) - (member e z))) - (loop for e in z - always (and (member e x) (member e y))) - t)) - -(defun shuffle (x) - (cond - ((null x) nil) - ((null (cdr x)) x) - (t - (multiple-value-bind - (y z) - (split-list x) - (append (shuffle y) (shuffle z)))))) - -(defun split-list (x) - (cond - ((null x) (values nil nil)) - ((null (cdr x)) (values x nil)) - (t - (multiple-value-bind - (y z) - (split-list (cddr x)) - (values (cons (car x) y) (cons (cadr x) z)))))) - -(defun intersection-12-body (size niters &optional (maxelem (* 2 size))) - (let ((state (make-random-state))) - (loop - for i from 1 to niters do - (let ((x (shuffle (loop for j from 1 to size - collect (random maxelem state)))) - (y (shuffle (loop for j from 1 to size - collect (random maxelem state))))) - (let ((z (intersection x y))) - (let ((is-good (is-intersection x y z))) - (unless is-good (return (values x y z))))))) - nil)) - -(defun nintersection-with-check (x y &key test) - (let ((ycopy (make-scaffold-copy y))) - (let ((result (if test - (nintersection x y :test test) - (nintersection x y)))) - (if (check-scaffold-copy y ycopy) - result - 'failed)))) - -(defun nintersection-12-body (size niters &optional (maxelem (* 2 size))) - (let ((state (make-random-state t))) - (loop - for i from 1 to niters do - (let ((x (shuffle (loop for j from 1 to size - collect (random maxelem state)))) - (y (shuffle (loop for j from 1 to size - collect (random maxelem state))))) - (let ((z (nintersection-with-check (copy-list x) y))) - (when (eqt z 'failed) (return (values x y z))) - (let ((is-good (is-intersection x y z))) - (unless is-good (return (values x y z))))))) - nil)) - - -(defun union-with-check (x y &key test test-not) - (let ((xcopy (make-scaffold-copy x)) - (ycopy (make-scaffold-copy y))) - (let ((result (cond - (test (union x y :test test)) - (test-not (union x y :test-not test-not)) - (t (union x y))))) - (if (and (check-scaffold-copy x xcopy) - (check-scaffold-copy y ycopy)) - result - 'failed)))) - -(defun union-with-check-and-key (x y key &key test test-not) - (let ((xcopy (make-scaffold-copy x)) - (ycopy (make-scaffold-copy y))) - (let ((result (cond - (test (union x y :key key :test test)) - (test-not (union x y :key key :test-not test-not)) - (t (union x y :key key))))) - (if (and (check-scaffold-copy x xcopy) - (check-scaffold-copy y ycopy)) - result - 'failed)))) - -(defun check-union (x y z) - (and (listp x) - (listp y) - (listp z) - (loop for e in z always (or (member e x) (member e y))) - (loop for e in x always (member e z)) - (loop for e in y always (member e z)) - t)) - -(defun do-random-unions (size niters &optional (maxelem (* 2 size))) - (let ((state (make-random-state))) - (loop - for i from 1 to niters do - (let ((x (shuffle (loop for j from 1 to size collect - (random maxelem state)))) - (y (shuffle (loop for j from 1 to size collect - (random maxelem state))))) - (let ((z (union x y))) - (let ((is-good (check-union x y z))) - (unless is-good (return (values x y z))))))) - nil)) - -(defun nunion-with-copy (x y &key test test-not) - (setf x (copy-list x)) - (setf y (copy-list y)) - (cond - (test (nunion x y :test test)) - (test-not (nunion x y :test-not test-not)) - (t (nunion x y)))) - -(defun nunion-with-copy-and-key (x y key &key test test-not) - (setf x (copy-list x)) - (setf y (copy-list y)) - (cond - (test (nunion x y :key key :test test)) - (test-not (nunion x y :key key :test-not test-not)) - (t (nunion x y :key key)))) - -(defun do-random-nunions (size niters &optional (maxelem (* 2 size))) - (let ((state (make-random-state))) - (loop - for i from 1 to niters do - (let ((x (shuffle (loop for j from 1 to size collect - (random maxelem state)))) - (y (shuffle (loop for j from 1 to size collect - (random maxelem state))))) - (let ((z (nunion-with-copy x y))) - (let ((is-good (check-union x y z))) - (unless is-good (return (values x y z))))))) - nil)) - -(defun set-difference-with-check (x y &key (key 'no-key) - test test-not) - (setf x (copy-list x)) - (setf y (copy-list y)) - (let ((xcopy (make-scaffold-copy x)) - (ycopy (make-scaffold-copy y))) - (let ((result (apply #'set-difference - x y - `(,@(unless (eqt key 'no-key) `(:key ,key)) - ,@(when test `(:test ,test)) - ,@(when test-not `(:test-not ,test-not)))))) - (cond - ((and (check-scaffold-copy x xcopy) - (check-scaffold-copy y ycopy)) - result) - (t - 'failed))))) - -(defun check-set-difference (x y z &key (key #'identity) - (test #'eql)) - (and - ;; (not (eqt 'failed z)) - (listp x) - (listp y) - (listp z) - (loop for e in z always (member e x :key key :test test)) - (loop for e in x always (or (member e y :key key :test test) - (member e z :key key :test test))) - (loop for e in y never (member e z :key key :test test)) - t)) - -(defun do-random-set-differences (size niters &optional (maxelem (* 2 size))) - (let ((state (make-random-state))) - (loop - for i from 1 to niters do - (let ((x (shuffle (loop for j from 1 to size collect - (random maxelem state)))) - (y (shuffle (loop for j from 1 to size collect - (random maxelem state))))) - (let ((z (set-difference-with-check x y))) - (let ((is-good (check-set-difference x y z))) - (unless is-good (return (values x y z))))))) - nil)) -(defun nset-difference-with-check (x y &key (key 'no-key) - test test-not) - (setf x (copy-list x)) - (setf y (copy-list y)) - (apply #'nset-difference - x y - `(,@(unless (eqt key 'no-key) `(:key ,key)) - ,@(when test `(:test ,test)) - ,@(when test-not `(:test-not ,test-not))))) - -(defun check-nset-difference (x y z &key (key #'identity) - (test #'eql)) - (and - (listp x) - (listp y) - (listp z) - (loop for e in z always (member e x :key key :test test)) - (loop for e in x always (or (member e y :key key :test test) - (member e z :key key :test test))) - (loop for e in y never (member e z :key key :test test)) - t)) - -(defun do-random-nset-differences (size niters &optional (maxelem (* 2 size))) - (let ((state (make-random-state))) - (loop - for i from 1 to niters do - (let ((x (shuffle (loop for j from 1 to size collect - (random maxelem state)))) - (y (shuffle (loop for j from 1 to size collect - (random maxelem state))))) - (let ((z (nset-difference-with-check x y))) - (let ((is-good (check-nset-difference x y z))) - (unless is-good (return (values x y z))))))) - nil)) - -(defun set-exclusive-or-with-check (x y &key (key 'no-key) - test test-not) - (setf x (copy-list x)) - (setf y (copy-list y)) - (let ((xcopy (make-scaffold-copy x)) - (ycopy (make-scaffold-copy y))) - (let ((result (apply #'set-exclusive-or - x y - `(,@(unless (eqt key 'no-key) `(:key ,key)) - ,@(when test `(:test ,test)) - ,@(when test-not `(:test-not ,test-not)))))) - (cond - ((and (check-scaffold-copy x xcopy) - (check-scaffold-copy y ycopy)) - result) - (t - 'failed))))) - -(defun check-set-exclusive-or (x y z &key (key #'identity) - (test #'eql)) - (and - ;; (not (eqt 'failed z)) - (listp x) - (listp y) - (listp z) - (loop for e in z always (or (member e x :key key :test test) - (member e y :key key :test test))) - (loop for e in x always (if (member e y :key key :test test) - (not (member e z :key key :test test)) - (member e z :key key :test test))) - (loop for e in y always (if (member e x :key key :test test) - (not (member e z :key key :test test)) - (member e z :key key :test test))) - t)) - -#| -(defun do-random-set-exclusive-ors (size niters &optional (maxelem (* 2 size))) - (let ((state (make-random-state))) - (loop - for i from 1 to niters do - (let ((x (shuffle (loop for j from 1 to size collect - (random maxelem state)))) - (y (shuffle (loop for j from 1 to size collect - (random maxelem state))))) - (let ((z (set-exclusive-or-with-check x y))) - (let ((is-good (check-set-exclusive-or x y z))) - (unless is-good (return (values x y z))))))) - nil)) -|# - -(defun nset-exclusive-or-with-check (x y &key (key 'no-key) - test test-not) - (setf x (copy-list x)) - (setf y (copy-list y)) - (apply #'nset-exclusive-or - x y - `(,@(unless (eqt key 'no-key) `(:key ,key)) - ,@(when test `(:test ,test)) - ,@(when test-not `(:test-not ,test-not))))) - -#| -(defun do-random-nset-exclusive-ors (size niters &optional (maxelem (* 2 size))) - (let ((state (make-random-state))) - (loop - for i from 1 to niters do - (let ((x (shuffle (loop for j from 1 to size collect - (random maxelem state)))) - (y (shuffle (loop for j from 1 to size collect - (random maxelem state))))) - (let ((z (nset-exclusive-or-with-check x y))) - (let ((is-good (check-set-exclusive-or x y z))) - (unless is-good (return (values x y z))))))) - nil)) -|# - -(defun subsetp-with-check (x y &key (key 'no-key) test test-not) - (let ((xcopy (make-scaffold-copy x)) - (ycopy (make-scaffold-copy y))) - (let ((result - (apply #'subsetp x y - `(,@(unless (eqt key 'no-key) - `(:key ,key)) - ,@(when test `(:test ,test)) - ,@(when test-not `(:test-not ,test-not)))))) - (cond - ((and (check-scaffold-copy x xcopy) - (check-scaffold-copy y ycopy)) - (not (not result))) - (t 'failed))))) (defun safe-elt (x n) (classify-error* (elt x n))) diff --git a/ansi-tests/append.lsp b/ansi-tests/append.lsp index f37f72a0..702a7b16 100644 --- a/ansi-tests/append.lsp +++ b/ansi-tests/append.lsp @@ -5,6 +5,7 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") (deftest append.1 (append) diff --git a/ansi-tests/assoc-if-not.lsp b/ansi-tests/assoc-if-not.lsp index 239a35d2..4ae14aa9 100644 --- a/ansi-tests/assoc-if-not.lsp +++ b/ansi-tests/assoc-if-not.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest assoc-if-not.1 (let* ((x (copy-list '((1 . a) (3 . b) (6 . c) (7 . d)))) (xcopy (make-scaffold-copy x)) diff --git a/ansi-tests/assoc-if.lsp b/ansi-tests/assoc-if.lsp index 347f1c25..6348f604 100644 --- a/ansi-tests/assoc-if.lsp +++ b/ansi-tests/assoc-if.lsp @@ -5,6 +5,7 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") (deftest assoc-if.1 (let* ((x (copy-list '((1 . a) (3 . b) (6 . c) (7 . d)))) diff --git a/ansi-tests/assoc.lsp b/ansi-tests/assoc.lsp index 37f32609..8915ccf7 100644 --- a/ansi-tests/assoc.lsp +++ b/ansi-tests/assoc.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest assoc.1 (assoc nil nil) nil) diff --git a/ansi-tests/atom.lsp b/ansi-tests/atom.lsp index 9b4af9e1..b9905c6b 100644 --- a/ansi-tests/atom.lsp +++ b/ansi-tests/atom.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +; (compile-and-load "cons-aux.lsp") + (deftest atom.order.1 (let ((i 0)) (values (atom (progn (incf i) '(a b))) i)) diff --git a/ansi-tests/butlast.lsp b/ansi-tests/butlast.lsp index 5a531e11..46ac2d4e 100644 --- a/ansi-tests/butlast.lsp +++ b/ansi-tests/butlast.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest butlast.1 (let ((x (list 'a 'b 'c 'd 'e))) (let ((xcopy (make-scaffold-copy x))) diff --git a/ansi-tests/cons-aux.lsp b/ansi-tests/cons-aux.lsp index d6fbf4a9..e5f2e137 100644 --- a/ansi-tests/cons-aux.lsp +++ b/ansi-tests/cons-aux.lsp @@ -5,6 +5,521 @@ (in-package :cl-test) +;;; +;;; A scaffold is a structure that is used to remember the object +;;; identities of the cons cells in a (noncircular) data structure. +;;; This lets us check if the data structure has been changed by +;;; an operation. +;;; + +(defstruct scaffold + node + car + cdr) + +(defun make-scaffold-copy (x) + "Make a tree that will be used to check if a tree has been changed." + (if + (consp x) + (make-scaffold :node x + :car (make-scaffold-copy (car x)) + :cdr (make-scaffold-copy (cdr x))) + (make-scaffold :node x + :car nil + :cdr nil))) + +(defun check-scaffold-copy (x xcopy) + "Return t if xcopy were produced from x by make-scaffold-copy, + and none of the cons cells in the tree rooted at x have been + changed." + + (and (eq x (scaffold-node xcopy)) + (or + (not (consp x)) + (and + (check-scaffold-copy (car x) (scaffold-car xcopy)) + (check-scaffold-copy (cdr x) (scaffold-cdr xcopy)))))) + +(defun create-c*r-test (n) + (cond + ((<= n 0) 'none) + (t + (cons (create-c*r-test (1- n)) + (create-c*r-test (1- n)))))) + +(defun nth-1-body (x) + (loop + for e in x + and i from 0 + count (not (eqt e (nth i x))))) + +(defun check-cons-copy (x y) + "Check that the tree x is a copy of the tree y, + returning t if it is, nil if not." + (cond + ((consp x) + (and (consp y) + (not (eqt x y)) + (check-cons-copy (car x) (car y)) + (check-cons-copy (cdr x) (cdr y)))) + ((eqt x y) t) + (t nil))) + +(defun check-sublis (a al &key (key 'no-key) test test-not) + "Apply sublis al a with various keys. Check that + the arguments are not themselves changed. Return nil + if the arguments do get changed." + (setf a (copy-tree a)) + (setf al (copy-tree al)) + (let ((acopy (make-scaffold-copy a)) + (alcopy (make-scaffold-copy al))) + (let ((as + (apply #'sublis al a + `(,@(when test `(:test ,test)) + ,@(when test-not `(:test-not ,test-not)) + ,@(unless (eqt key 'no-key) `(:key ,key)))))) + (and + (check-scaffold-copy a acopy) + (check-scaffold-copy al alcopy) + as)))) + +(defun check-nsublis (a al &key (key 'no-key) test test-not) + "Apply nsublis al a, copying these arguments first." + (setf a (copy-tree a)) + (setf al (copy-tree al)) + (let ((as + (apply #'sublis (copy-tree al) (copy-tree a) + `(,@(when test `(:test ,test)) + ,@(when test-not `(:test-not ,test-not)) + ,@(unless (eqt key 'no-key) `(:key ,key)))))) + as)) + +(defun check-subst (new old tree &key (key 'no-key) test test-not) + "Call subst new old tree, with keyword arguments if present. + Check that the arguments are not changed." + (setf new (copy-tree new)) + (setf old (copy-tree old)) + (setf tree (copy-tree tree)) + (let ((newcopy (make-scaffold-copy new)) + (oldcopy (make-scaffold-copy old)) + (treecopy (make-scaffold-copy tree))) + (let ((result + (apply #'subst new old tree + `(,@(unless (eqt key 'no-key) `(:key ,key)) + ,@(when test `(:test ,test)) + ,@(when test-not `(:test-not ,test-not)))))) + (and (check-scaffold-copy new newcopy) + (check-scaffold-copy old oldcopy) + (check-scaffold-copy tree treecopy) + result)))) + + +(defun check-subst-if (new pred tree &key (key 'no-key)) + "Call subst-if new pred tree, with various keyword arguments + if present. Check that the arguments are not changed." + (setf new (copy-tree new)) + (setf tree (copy-tree tree)) + (let ((newcopy (make-scaffold-copy new)) + (predcopy (make-scaffold-copy pred)) + (treecopy (make-scaffold-copy tree))) + (let ((result + (apply #'subst-if new pred tree + (unless (eqt key 'no-key) `(:key ,key))))) + (and (check-scaffold-copy new newcopy) + (check-scaffold-copy pred predcopy) + (check-scaffold-copy tree treecopy) + result)))) + +(defun check-subst-if-not (new pred tree &key (key 'no-key)) + "Call subst-if-not new pred tree, with various keyword arguments + if present. Check that the arguments are not changed." + (setf new (copy-tree new)) + (setf tree (copy-tree tree)) + (let ((newcopy (make-scaffold-copy new)) + (predcopy (make-scaffold-copy pred)) + (treecopy (make-scaffold-copy tree))) + (let ((result + (apply #'subst-if-not new pred tree + (unless (eqt key 'no-key) `(:key ,key))))) + (and (check-scaffold-copy new newcopy) + (check-scaffold-copy pred predcopy) + (check-scaffold-copy tree treecopy) + result)))) + +(defun check-nsubst (new old tree &key (key 'no-key) test test-not) + "Call nsubst new old tree, with keyword arguments if present." + (setf new (copy-tree new)) + (setf old (copy-tree old)) + (setf tree (copy-tree tree)) + (apply #'nsubst new old tree + `(,@(unless (eqt key 'no-key) `(:key ,key)) + ,@(when test `(:test ,test)) + ,@(when test-not `(:test-not ,test-not))))) + +(defun check-nsubst-if (new pred tree &key (key 'no-key)) + "Call nsubst-if new pred tree, with keyword arguments if present." + (setf new (copy-tree new)) + (setf tree (copy-tree tree)) + (apply #'nsubst-if new pred tree + (unless (eqt key 'no-key) `(:key ,key)))) + +(defun check-nsubst-if-not (new pred tree &key (key 'no-key)) + "Call nsubst-if-not new pred tree, with keyword arguments if present." + (setf new (copy-tree new)) + (setf tree (copy-tree tree)) + (apply #'nsubst-if-not new pred tree + (unless (eqt key 'no-key) `(:key ,key)))) + +(defun check-copy-list-copy (x y) + "Check that y is a copy of the list x." + (if + (consp x) + (and (consp y) + (not (eqt x y)) + (eqt (car x) (car y)) + (check-copy-list-copy (cdr x) (cdr y))) + (and (eqt x y) t))) + +(defun check-copy-list (x) + "Apply copy-list, checking that it properly copies, + and checking that it does not change its argument." + (let ((xcopy (make-scaffold-copy x))) + (let ((y (copy-list x))) + (and + (check-scaffold-copy x xcopy) + (check-copy-list-copy x y) + y)))) + +(defun append-6-body () + (let* ((cal (min 2048 call-arguments-limit)) + (step (max 1 (floor (/ cal) 64)))) + (loop + for n from 0 + below cal + by step + count + (not + (equal + (apply #'append (loop for i from 1 to n + collect '(a))) + (make-list n :initial-element 'a)))))) + +(defun is-intersection (x y z) + "Check that z is the intersection of x and y." + (and + (listp x) + (listp y) + (listp z) + (loop for e in x + always (or (not (member e y)) + (member e z))) + (loop for e in y + always (or (not (member e x)) + (member e z))) + (loop for e in z + always (and (member e x) (member e y))) + t)) + +(defun shuffle (x) + (cond + ((null x) nil) + ((null (cdr x)) x) + (t + (multiple-value-bind + (y z) + (split-list x) + (append (shuffle y) (shuffle z)))))) + +(defun split-list (x) + (cond + ((null x) (values nil nil)) + ((null (cdr x)) (values x nil)) + (t + (multiple-value-bind + (y z) + (split-list (cddr x)) + (values (cons (car x) y) (cons (cadr x) z)))))) + +(defun intersection-12-body (size niters &optional (maxelem (* 2 size))) + (let ((state (make-random-state))) + (loop + for i from 1 to niters do + (let ((x (shuffle (loop for j from 1 to size + collect (random maxelem state)))) + (y (shuffle (loop for j from 1 to size + collect (random maxelem state))))) + (let ((z (intersection x y))) + (let ((is-good (is-intersection x y z))) + (unless is-good (return (values x y z))))))) + nil)) + +(defun nintersection-with-check (x y &key test) + (let ((ycopy (make-scaffold-copy y))) + (let ((result (if test + (nintersection x y :test test) + (nintersection x y)))) + (if (check-scaffold-copy y ycopy) + result + 'failed)))) + +(defun nintersection-12-body (size niters &optional (maxelem (* 2 size))) + (let ((state (make-random-state t))) + (loop + for i from 1 to niters do + (let ((x (shuffle (loop for j from 1 to size + collect (random maxelem state)))) + (y (shuffle (loop for j from 1 to size + collect (random maxelem state))))) + (let ((z (nintersection-with-check (copy-list x) y))) + (when (eqt z 'failed) (return (values x y z))) + (let ((is-good (is-intersection x y z))) + (unless is-good (return (values x y z))))))) + nil)) + + +(defun union-with-check (x y &key test test-not) + (let ((xcopy (make-scaffold-copy x)) + (ycopy (make-scaffold-copy y))) + (let ((result (cond + (test (union x y :test test)) + (test-not (union x y :test-not test-not)) + (t (union x y))))) + (if (and (check-scaffold-copy x xcopy) + (check-scaffold-copy y ycopy)) + result + 'failed)))) + +(defun union-with-check-and-key (x y key &key test test-not) + (let ((xcopy (make-scaffold-copy x)) + (ycopy (make-scaffold-copy y))) + (let ((result (cond + (test (union x y :key key :test test)) + (test-not (union x y :key key :test-not test-not)) + (t (union x y :key key))))) + (if (and (check-scaffold-copy x xcopy) + (check-scaffold-copy y ycopy)) + result + 'failed)))) + +(defun check-union (x y z) + (and (listp x) + (listp y) + (listp z) + (loop for e in z always (or (member e x) (member e y))) + (loop for e in x always (member e z)) + (loop for e in y always (member e z)) + t)) + +(defun do-random-unions (size niters &optional (maxelem (* 2 size))) + (let ((state (make-random-state))) + (loop + for i from 1 to niters do + (let ((x (shuffle (loop for j from 1 to size collect + (random maxelem state)))) + (y (shuffle (loop for j from 1 to size collect + (random maxelem state))))) + (let ((z (union x y))) + (let ((is-good (check-union x y z))) + (unless is-good (return (values x y z))))))) + nil)) + +(defun nunion-with-copy (x y &key test test-not) + (setf x (copy-list x)) + (setf y (copy-list y)) + (cond + (test (nunion x y :test test)) + (test-not (nunion x y :test-not test-not)) + (t (nunion x y)))) + +(defun nunion-with-copy-and-key (x y key &key test test-not) + (setf x (copy-list x)) + (setf y (copy-list y)) + (cond + (test (nunion x y :key key :test test)) + (test-not (nunion x y :key key :test-not test-not)) + (t (nunion x y :key key)))) + +(defun do-random-nunions (size niters &optional (maxelem (* 2 size))) + (let ((state (make-random-state))) + (loop + for i from 1 to niters do + (let ((x (shuffle (loop for j from 1 to size collect + (random maxelem state)))) + (y (shuffle (loop for j from 1 to size collect + (random maxelem state))))) + (let ((z (nunion-with-copy x y))) + (let ((is-good (check-union x y z))) + (unless is-good (return (values x y z))))))) + nil)) + +(defun set-difference-with-check (x y &key (key 'no-key) + test test-not) + (setf x (copy-list x)) + (setf y (copy-list y)) + (let ((xcopy (make-scaffold-copy x)) + (ycopy (make-scaffold-copy y))) + (let ((result (apply #'set-difference + x y + `(,@(unless (eqt key 'no-key) `(:key ,key)) + ,@(when test `(:test ,test)) + ,@(when test-not `(:test-not ,test-not)))))) + (cond + ((and (check-scaffold-copy x xcopy) + (check-scaffold-copy y ycopy)) + result) + (t + 'failed))))) + +(defun check-set-difference (x y z &key (key #'identity) + (test #'eql)) + (and + ;; (not (eqt 'failed z)) + (listp x) + (listp y) + (listp z) + (loop for e in z always (member e x :key key :test test)) + (loop for e in x always (or (member e y :key key :test test) + (member e z :key key :test test))) + (loop for e in y never (member e z :key key :test test)) + t)) + +(defun do-random-set-differences (size niters &optional (maxelem (* 2 size))) + (let ((state (make-random-state))) + (loop + for i from 1 to niters do + (let ((x (shuffle (loop for j from 1 to size collect + (random maxelem state)))) + (y (shuffle (loop for j from 1 to size collect + (random maxelem state))))) + (let ((z (set-difference-with-check x y))) + (let ((is-good (check-set-difference x y z))) + (unless is-good (return (values x y z))))))) + nil)) +(defun nset-difference-with-check (x y &key (key 'no-key) + test test-not) + (setf x (copy-list x)) + (setf y (copy-list y)) + (apply #'nset-difference + x y + `(,@(unless (eqt key 'no-key) `(:key ,key)) + ,@(when test `(:test ,test)) + ,@(when test-not `(:test-not ,test-not))))) + +(defun check-nset-difference (x y z &key (key #'identity) + (test #'eql)) + (and + (listp x) + (listp y) + (listp z) + (loop for e in z always (member e x :key key :test test)) + (loop for e in x always (or (member e y :key key :test test) + (member e z :key key :test test))) + (loop for e in y never (member e z :key key :test test)) + t)) + +(defun do-random-nset-differences (size niters &optional (maxelem (* 2 size))) + (let ((state (make-random-state))) + (loop + for i from 1 to niters do + (let ((x (shuffle (loop for j from 1 to size collect + (random maxelem state)))) + (y (shuffle (loop for j from 1 to size collect + (random maxelem state))))) + (let ((z (nset-difference-with-check x y))) + (let ((is-good (check-nset-difference x y z))) + (unless is-good (return (values x y z))))))) + nil)) + +(defun set-exclusive-or-with-check (x y &key (key 'no-key) + test test-not) + (setf x (copy-list x)) + (setf y (copy-list y)) + (let ((xcopy (make-scaffold-copy x)) + (ycopy (make-scaffold-copy y))) + (let ((result (apply #'set-exclusive-or + x y + `(,@(unless (eqt key 'no-key) `(:key ,key)) + ,@(when test `(:test ,test)) + ,@(when test-not `(:test-not ,test-not)))))) + (cond + ((and (check-scaffold-copy x xcopy) + (check-scaffold-copy y ycopy)) + result) + (t + 'failed))))) + +(defun check-set-exclusive-or (x y z &key (key #'identity) + (test #'eql)) + (and + ;; (not (eqt 'failed z)) + (listp x) + (listp y) + (listp z) + (loop for e in z always (or (member e x :key key :test test) + (member e y :key key :test test))) + (loop for e in x always (if (member e y :key key :test test) + (not (member e z :key key :test test)) + (member e z :key key :test test))) + (loop for e in y always (if (member e x :key key :test test) + (not (member e z :key key :test test)) + (member e z :key key :test test))) + t)) + +#| +(defun do-random-set-exclusive-ors (size niters &optional (maxelem (* 2 size))) + (let ((state (make-random-state))) + (loop + for i from 1 to niters do + (let ((x (shuffle (loop for j from 1 to size collect + (random maxelem state)))) + (y (shuffle (loop for j from 1 to size collect + (random maxelem state))))) + (let ((z (set-exclusive-or-with-check x y))) + (let ((is-good (check-set-exclusive-or x y z))) + (unless is-good (return (values x y z))))))) + nil)) +|# + +(defun nset-exclusive-or-with-check (x y &key (key 'no-key) + test test-not) + (setf x (copy-list x)) + (setf y (copy-list y)) + (apply #'nset-exclusive-or + x y + `(,@(unless (eqt key 'no-key) `(:key ,key)) + ,@(when test `(:test ,test)) + ,@(when test-not `(:test-not ,test-not))))) + +#| +(defun do-random-nset-exclusive-ors (size niters &optional (maxelem (* 2 size))) + (let ((state (make-random-state))) + (loop + for i from 1 to niters do + (let ((x (shuffle (loop for j from 1 to size collect + (random maxelem state)))) + (y (shuffle (loop for j from 1 to size collect + (random maxelem state))))) + (let ((z (nset-exclusive-or-with-check x y))) + (let ((is-good (check-set-exclusive-or x y z))) + (unless is-good (return (values x y z))))))) + nil)) +|# + +(defun subsetp-with-check (x y &key (key 'no-key) test test-not) + (let ((xcopy (make-scaffold-copy x)) + (ycopy (make-scaffold-copy y))) + (let ((result + (apply #'subsetp x y + `(,@(unless (eqt key 'no-key) + `(:key ,key)) + ,@(when test `(:test ,test)) + ,@(when test-not `(:test-not ,test-not)))))) + (cond + ((and (check-scaffold-copy x xcopy) + (check-scaffold-copy y ycopy)) + (not (not result))) + (t 'failed))))) + (defun my-set-exclusive-or (set1 set2 &key key test test-not) (assert (not (and test test-not))) diff --git a/ansi-tests/cons-test-01.lsp b/ansi-tests/cons-test-01.lsp index 41141e60..02c15a0e 100644 --- a/ansi-tests/cons-test-01.lsp +++ b/ansi-tests/cons-test-01.lsp @@ -7,6 +7,8 @@ (declaim (optimize (safety 3))) +(compile-and-load "cons-aux.lsp") + ;; ;; Test the subtype relationships between null, list, cons and atom ;; diff --git a/ansi-tests/cons-test-03.lsp b/ansi-tests/cons-test-03.lsp index 1aa54ccc..43173434 100644 --- a/ansi-tests/cons-test-03.lsp +++ b/ansi-tests/cons-test-03.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; (typep <obj> 'list) diff --git a/ansi-tests/cons-test-05.lsp b/ansi-tests/cons-test-05.lsp index 349f2d76..1c4f80db 100644 --- a/ansi-tests/cons-test-05.lsp +++ b/ansi-tests/cons-test-05.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (defparameter *cons-accessors* '(first second third fourth fifth sixth seventh eighth ninth tenth car cdr caar cadr cdar cddr diff --git a/ansi-tests/cons.lsp b/ansi-tests/cons.lsp index b4991e34..ae3ee676 100644 --- a/ansi-tests/cons.lsp +++ b/ansi-tests/cons.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + ;;; Various easy tests of cons (deftest cons-of-symbols diff --git a/ansi-tests/consp.lsp b/ansi-tests/consp.lsp index f9e4e6bc..13493d4c 100644 --- a/ansi-tests/consp.lsp +++ b/ansi-tests/consp.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + ;; Lists satisfy consp (deftest consp-list (notnot-mv (consp '(a))) diff --git a/ansi-tests/copy-alist.lsp b/ansi-tests/copy-alist.lsp index 93c9c9fb..9eaed81d 100644 --- a/ansi-tests/copy-alist.lsp +++ b/ansi-tests/copy-alist.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest copy-alist.1 (let* ((x (copy-tree '((a . b) (c . d) nil (e f) ((x) ((y z)) w) ("foo" . "bar") (#\w . 1.234) diff --git a/ansi-tests/copy-list.lsp b/ansi-tests/copy-list.lsp index 9a8e0390..73b3d8ee 100644 --- a/ansi-tests/copy-list.lsp +++ b/ansi-tests/copy-list.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest copy-list.1 (check-copy-list '(a b c d)) (a b c d)) diff --git a/ansi-tests/copy-tree.lsp b/ansi-tests/copy-tree.lsp index 1ee8314d..390c6a0b 100644 --- a/ansi-tests/copy-tree.lsp +++ b/ansi-tests/copy-tree.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + ;; Try copy-tree on a tree containing elements of various kinds (deftest copy-tree.1 (let* ((x (cons 'a (list diff --git a/ansi-tests/cxr.lsp b/ansi-tests/cxr.lsp index b4dd6390..a1d936ea 100644 --- a/ansi-tests/cxr.lsp +++ b/ansi-tests/cxr.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + ;; Tests of car, cdr and compound forms (deftest cons.23 (car '(a)) diff --git a/ansi-tests/endp.lsp b/ansi-tests/endp.lsp index a8202983..76154f47 100644 --- a/ansi-tests/endp.lsp +++ b/ansi-tests/endp.lsp @@ -5,8 +5,7 @@ (in-package :cl-test) -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; endp +(compile-and-load "cons-aux.lsp") (deftest endp-nil (notnot-mv (endp nil)) diff --git a/ansi-tests/get-properties.lsp b/ansi-tests/get-properties.lsp index c8481543..d26f375d 100644 --- a/ansi-tests/get-properties.lsp +++ b/ansi-tests/get-properties.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest get-properties.1 (get-properties nil nil) nil nil nil) diff --git a/ansi-tests/getf.lsp b/ansi-tests/getf.lsp index f2738903..7aa717e6 100644 --- a/ansi-tests/getf.lsp +++ b/ansi-tests/getf.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest getf.1 (getf nil 'a) nil) diff --git a/ansi-tests/intersection.lsp b/ansi-tests/intersection.lsp index 358e8254..5706c11e 100644 --- a/ansi-tests/intersection.lsp +++ b/ansi-tests/intersection.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest intersection.1 (intersection nil nil) nil) diff --git a/ansi-tests/last.lsp b/ansi-tests/last.lsp index 4ad339b6..df2b6801 100644 --- a/ansi-tests/last.lsp +++ b/ansi-tests/last.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest last.1 (last nil) nil) diff --git a/ansi-tests/ldiff.lsp b/ansi-tests/ldiff.lsp index 19f5939a..6714f63e 100644 --- a/ansi-tests/ldiff.lsp +++ b/ansi-tests/ldiff.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest ldiff.1 (let* ((x (copy-tree '(a b c d e f))) (xcopy (make-scaffold-copy x))) diff --git a/ansi-tests/list-length.lsp b/ansi-tests/list-length.lsp index 50876c64..aba9f348 100644 --- a/ansi-tests/list-length.lsp +++ b/ansi-tests/list-length.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest list-length-nil (list-length nil) 0) diff --git a/ansi-tests/list.lsp b/ansi-tests/list.lsp index 64d8ac48..5fe585ad 100644 --- a/ansi-tests/list.lsp +++ b/ansi-tests/list.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest list.1 (list 'a 'b 'c) (a b c)) diff --git a/ansi-tests/listp.lsp b/ansi-tests/listp.lsp index 81e4ed06..bfc0810e 100644 --- a/ansi-tests/listp.lsp +++ b/ansi-tests/listp.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest listp-nil (notnot-mv (listp nil)) t) diff --git a/ansi-tests/load-cons.lsp b/ansi-tests/load-cons.lsp index 3b522089..ea366af7 100644 --- a/ansi-tests/load-cons.lsp +++ b/ansi-tests/load-cons.lsp @@ -1,6 +1,6 @@ ;;; Tests of conses -(compile-and-load "cons-aux.lsp") +;;; (compile-and-load "cons-aux.lsp") (load "cons.lsp") (load "consp.lsp") diff --git a/ansi-tests/make-list.lsp b/ansi-tests/make-list.lsp index e5b9d0b0..466fbae8 100644 --- a/ansi-tests/make-list.lsp +++ b/ansi-tests/make-list.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest make-list-empty.1 (make-list 0) nil) diff --git a/ansi-tests/mapc.lsp b/ansi-tests/mapc.lsp index 944fe2e9..1be931e9 100644 --- a/ansi-tests/mapc.lsp +++ b/ansi-tests/mapc.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest mapc.1 (mapc #'list nil) nil) diff --git a/ansi-tests/mapcan.lsp b/ansi-tests/mapcan.lsp index 4208a82d..4278e1e7 100644 --- a/ansi-tests/mapcan.lsp +++ b/ansi-tests/mapcan.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest mapcan.1 (mapcan #'list nil) nil) diff --git a/ansi-tests/mapcar.lsp b/ansi-tests/mapcar.lsp index 312c4fc3..d7aaccad 100644 --- a/ansi-tests/mapcar.lsp +++ b/ansi-tests/mapcar.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest mapcar.1 (mapcar #'1+ nil) nil) diff --git a/ansi-tests/mapcon.lsp b/ansi-tests/mapcon.lsp index 3def313a..bfefb8a9 100644 --- a/ansi-tests/mapcon.lsp +++ b/ansi-tests/mapcon.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest mapcon.1 (mapcon #'(lambda (x) (append '(a) x nil)) nil) nil) diff --git a/ansi-tests/mapl.lsp b/ansi-tests/mapl.lsp index 9f649f69..d7e7bff7 100644 --- a/ansi-tests/mapl.lsp +++ b/ansi-tests/mapl.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest mapl.1 (mapl #'list nil) nil) diff --git a/ansi-tests/maplist.lsp b/ansi-tests/maplist.lsp index bb3e8c94..cdf72f94 100644 --- a/ansi-tests/maplist.lsp +++ b/ansi-tests/maplist.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest maplist.1 (maplist #'list nil) nil) diff --git a/ansi-tests/member-if-not.lsp b/ansi-tests/member-if-not.lsp index 81441604..85d22c9d 100644 --- a/ansi-tests/member-if-not.lsp +++ b/ansi-tests/member-if-not.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest member-if-not.1 (member-if-not #'listp nil) nil) diff --git a/ansi-tests/member-if.lsp b/ansi-tests/member-if.lsp index 50f5b936..51915185 100644 --- a/ansi-tests/member-if.lsp +++ b/ansi-tests/member-if.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest member-if.1 (member-if #'listp nil) nil) diff --git a/ansi-tests/member.lsp b/ansi-tests/member.lsp index 235018b8..56666a2d 100644 --- a/ansi-tests/member.lsp +++ b/ansi-tests/member.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest member.1 (let* ((x (copy-tree '(a b c d e f))) (xcopy (make-scaffold-copy x)) diff --git a/ansi-tests/nbutlast.lsp b/ansi-tests/nbutlast.lsp index c9360a39..d1275103 100644 --- a/ansi-tests/nbutlast.lsp +++ b/ansi-tests/nbutlast.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nbutlast.1 (let ((x (list 'a 'b 'c 'd 'e))) (let ((y (cdr x)) diff --git a/ansi-tests/nconc.lsp b/ansi-tests/nconc.lsp index 89428057..8f3faf5b 100644 --- a/ansi-tests/nconc.lsp +++ b/ansi-tests/nconc.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nconc.1 (nconc) nil) diff --git a/ansi-tests/nintersection.lsp b/ansi-tests/nintersection.lsp index 3ab1db0f..81b0b69e 100644 --- a/ansi-tests/nintersection.lsp +++ b/ansi-tests/nintersection.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nintersection.1 (nintersection nil nil) nil) diff --git a/ansi-tests/nreconc.lsp b/ansi-tests/nreconc.lsp index 328369ba..b9567dcf 100644 --- a/ansi-tests/nreconc.lsp +++ b/ansi-tests/nreconc.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nreconc.1 (let* ((x (list 'a 'b 'c)) (y (copy-tree '(d e f))) diff --git a/ansi-tests/nset-difference.lsp b/ansi-tests/nset-difference.lsp index b32f4eaf..a1fb829e 100644 --- a/ansi-tests/nset-difference.lsp +++ b/ansi-tests/nset-difference.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nset-difference.1 (nset-difference nil nil) nil) diff --git a/ansi-tests/nset-exclusive-or.lsp b/ansi-tests/nset-exclusive-or.lsp index c0795454..68e3a254 100644 --- a/ansi-tests/nset-exclusive-or.lsp +++ b/ansi-tests/nset-exclusive-or.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nset-exclusive-or.1 (nset-exclusive-or nil nil) nil) diff --git a/ansi-tests/nsublis.lsp b/ansi-tests/nsublis.lsp index 6d5eedd1..5ee2c3a2 100644 --- a/ansi-tests/nsublis.lsp +++ b/ansi-tests/nsublis.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nsublis.1 (check-nsublis '((a b) g (d e 10 g h) 15 . g) '((e . e2) (g . 17))) diff --git a/ansi-tests/nsubst-if-not.lsp b/ansi-tests/nsubst-if-not.lsp index c08be3cb..521c2d2f 100644 --- a/ansi-tests/nsubst-if-not.lsp +++ b/ansi-tests/nsubst-if-not.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nsubst-if-not.1 (check-nsubst-if-not '(x) 'consp '(1 (1 2) (1 2 3) (1 2 3 4))) ((x) diff --git a/ansi-tests/nsubst-if.lsp b/ansi-tests/nsubst-if.lsp index 95597e85..6cce9fbb 100644 --- a/ansi-tests/nsubst-if.lsp +++ b/ansi-tests/nsubst-if.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nsubst-if.1 (check-nsubst-if 'a #'consp '((100 1) (2 3) (4 3 2 1) (a b c))) a) diff --git a/ansi-tests/nsubst.lsp b/ansi-tests/nsubst.lsp index 06e37477..f20b800f 100644 --- a/ansi-tests/nsubst.lsp +++ b/ansi-tests/nsubst.lsp @@ -5,6 +5,7 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") (defvar *nsubst-tree-1* '(10 (30 20 10) (20 10) (10 20 30 40))) diff --git a/ansi-tests/nth.lsp b/ansi-tests/nth.lsp index fa63cbfa..090042ae 100644 --- a/ansi-tests/nth.lsp +++ b/ansi-tests/nth.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nth.1 (nth-1-body (loop for i from 1 to 2000 collect (* 4 i))) 0) diff --git a/ansi-tests/nthcdr.lsp b/ansi-tests/nthcdr.lsp index 6fdffd7f..4823c1cc 100644 --- a/ansi-tests/nthcdr.lsp +++ b/ansi-tests/nthcdr.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + ;;; Error tests (deftest nthcdr.error.1 diff --git a/ansi-tests/nunion.lsp b/ansi-tests/nunion.lsp index 877d3220..53df8a39 100644 --- a/ansi-tests/nunion.lsp +++ b/ansi-tests/nunion.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest nunion.1 (nunion nil nil) nil) diff --git a/ansi-tests/pairlis.lsp b/ansi-tests/pairlis.lsp index 15e3813b..2aa7bd09 100644 --- a/ansi-tests/pairlis.lsp +++ b/ansi-tests/pairlis.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + ;; Pairlis has two legal behaviors: the pairs ;; can be prepended in the same order, or in the ;; reverse order, that they appear in the first diff --git a/ansi-tests/pop.lsp b/ansi-tests/pop.lsp index f58d8f06..f33d9cd8 100644 --- a/ansi-tests/pop.lsp +++ b/ansi-tests/pop.lsp @@ -3,9 +3,10 @@ ;;;; Created: Sat Apr 19 22:27:18 2003 ;;;; Contains: Tests of POP - (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest pop.1 (let ((x (copy-tree '(a b c)))) (let ((y (pop x))) diff --git a/ansi-tests/push.lsp b/ansi-tests/push.lsp index 41e8f907..3ba4957a 100644 --- a/ansi-tests/push.lsp +++ b/ansi-tests/push.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + ;;; See also places.lsp (deftest push.1 diff --git a/ansi-tests/pushnew.lsp b/ansi-tests/pushnew.lsp index f65d0413..ba8bc1ad 100644 --- a/ansi-tests/pushnew.lsp +++ b/ansi-tests/pushnew.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest pushnew.1 (let ((x nil)) (let ((y (pushnew 'a x))) diff --git a/ansi-tests/rassoc-if-not.lsp b/ansi-tests/rassoc-if-not.lsp index 37e649d1..f426a748 100644 --- a/ansi-tests/rassoc-if-not.lsp +++ b/ansi-tests/rassoc-if-not.lsp @@ -5,6 +5,7 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") (deftest rassoc-if-not.1 (let* ((x (rev-assoc-list '((1 . a) (3 . b) (6 . c) (7 . d)))) diff --git a/ansi-tests/rassoc-if.lsp b/ansi-tests/rassoc-if.lsp index e121d4b7..96ce39b6 100644 --- a/ansi-tests/rassoc-if.lsp +++ b/ansi-tests/rassoc-if.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest rassoc-if.1 (let* ((x (rev-assoc-list '((1 . a) (3 . b) (6 . c) (7 . d)))) (xcopy (make-scaffold-copy x)) diff --git a/ansi-tests/remf.lsp b/ansi-tests/remf.lsp index 6a1af541..e3c3dbd4 100644 --- a/ansi-tests/remf.lsp +++ b/ansi-tests/remf.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest remf.1 (let ((x nil)) (values (remf x 'a) x)) diff --git a/ansi-tests/rest.lsp b/ansi-tests/rest.lsp index 2fe471b2..6fb9f5ec 100644 --- a/ansi-tests/rest.lsp +++ b/ansi-tests/rest.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest rest.1 (rest (list 'a 'b 'c)) (b c)) diff --git a/ansi-tests/revappend.lsp b/ansi-tests/revappend.lsp index dc725a63..f711cfa1 100644 --- a/ansi-tests/revappend.lsp +++ b/ansi-tests/revappend.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest revappend.1 (let* ((x (list 'a 'b 'c)) (y (list 'd 'e 'f)) diff --git a/ansi-tests/rplaca.lsp b/ansi-tests/rplaca.lsp index fe793b4d..ec5ea782 100644 --- a/ansi-tests/rplaca.lsp +++ b/ansi-tests/rplaca.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest rplaca.1 (let ((x (cons 'a 'b))) (let ((y x)) diff --git a/ansi-tests/rplacd.lsp b/ansi-tests/rplacd.lsp index 41977db7..f8e55119 100644 --- a/ansi-tests/rplacd.lsp +++ b/ansi-tests/rplacd.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest rplacd.1 (let ((x (cons 'a 'b))) (let ((y x)) diff --git a/ansi-tests/set-difference.lsp b/ansi-tests/set-difference.lsp index 3b0cb62f..7a84b4cb 100644 --- a/ansi-tests/set-difference.lsp +++ b/ansi-tests/set-difference.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest set-difference.1 (set-difference nil nil) nil) diff --git a/ansi-tests/set-exclusive-or.lsp b/ansi-tests/set-exclusive-or.lsp index 16ced6eb..b937263a 100644 --- a/ansi-tests/set-exclusive-or.lsp +++ b/ansi-tests/set-exclusive-or.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest set-exclusive-or.1 (set-exclusive-or nil nil) nil) diff --git a/ansi-tests/sublis.lsp b/ansi-tests/sublis.lsp index aabe95d0..daa2e49e 100644 --- a/ansi-tests/sublis.lsp +++ b/ansi-tests/sublis.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest sublis.1 (check-sublis '((a b) g (d e 10 g h) 15 . g) '((e . e2) (g . 17))) diff --git a/ansi-tests/subsetp.lsp b/ansi-tests/subsetp.lsp index 55f661ac..9116091e 100644 --- a/ansi-tests/subsetp.lsp +++ b/ansi-tests/subsetp.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (defvar cons-test-24-var '(78 "z" (8 9))) (deftest subsetp.1 diff --git a/ansi-tests/subst-if-not.lsp b/ansi-tests/subst-if-not.lsp index 79cc576d..bbc93fe7 100644 --- a/ansi-tests/subst-if-not.lsp +++ b/ansi-tests/subst-if-not.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest subst-if-not.1 (check-subst-if-not '(x) 'consp '(1 (1 2) (1 2 3) (1 2 3 4))) ((x) diff --git a/ansi-tests/subst-if.lsp b/ansi-tests/subst-if.lsp index f9992c30..cb2cdaa7 100644 --- a/ansi-tests/subst-if.lsp +++ b/ansi-tests/subst-if.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest subst-if.1 (check-subst-if 'a #'consp '((100 1) (2 3) (4 3 2 1) (a b c))) a) diff --git a/ansi-tests/subst.lsp b/ansi-tests/subst.lsp index f3cc0ff1..11a6026b 100644 --- a/ansi-tests/subst.lsp +++ b/ansi-tests/subst.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (defvar *subst-tree-1* '(10 (30 20 10) (20 10) (10 20 30 40))) (deftest subst.1 diff --git a/ansi-tests/tailp.lsp b/ansi-tests/tailp.lsp index 895090d3..22505712 100644 --- a/ansi-tests/tailp.lsp +++ b/ansi-tests/tailp.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest tailp.1 (let ((x (copy-tree '(a b c d e . f)))) (and diff --git a/ansi-tests/tree-equal.lsp b/ansi-tests/tree-equal.lsp index 9733f4c0..060f5a53 100644 --- a/ansi-tests/tree-equal.lsp +++ b/ansi-tests/tree-equal.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest tree-equal.1 (notnot-mv (tree-equal 'a 'a)) t) diff --git a/ansi-tests/union.lsp b/ansi-tests/union.lsp index d54834f6..74460494 100644 --- a/ansi-tests/union.lsp +++ b/ansi-tests/union.lsp @@ -5,6 +5,8 @@ (in-package :cl-test) +(compile-and-load "cons-aux.lsp") + (deftest union.1 (union nil nil) nil) -- GitLab