diff --git a/.gitignore b/.gitignore index e5f14257b2315a2c33f440432e7f1399367e38a4..e77a14ff90c30b4ca90f27b54083b81f94c268ee 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +*~ +*.out +*.dat +*.fas ansi-aux-macros.fas ansi-aux.fas array-aux.fas diff --git a/adjust-array.lsp b/arrays/adjust-array.lsp similarity index 99% rename from adjust-array.lsp rename to arrays/adjust-array.lsp index 11009de697cacb82c0c0e2051df309709c889f72..4fd21e259d0a31083f4bf1a95e842059a57e6e6a 100644 --- a/adjust-array.lsp +++ b/arrays/adjust-array.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 15 07:27:22 2004 ;;;; Contains: Tests of ADJUST-ARRAY -(in-package :cl-test) + (defun listify-form (form) (cond diff --git a/adjustable-array-p.lsp b/arrays/adjustable-array-p.lsp similarity index 98% rename from adjustable-array-p.lsp rename to arrays/adjustable-array-p.lsp index fdfce8b4ab3030b8caf52aac2de7efc161cd4228..03abfdd3ae35fffe27a277ed94e751a273e8d762 100644 --- a/adjustable-array-p.lsp +++ b/arrays/adjustable-array-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jan 20 21:25:22 2003 ;;;; Contains: Tests for ADJUSTABLE-ARRAY-P -(in-package :cl-test) + (deftest adjustable-array-p.1 (notnot (adjustable-array-p (make-array '(5) :adjustable t))) diff --git a/aref.lsp b/arrays/aref.lsp similarity index 99% rename from aref.lsp rename to arrays/aref.lsp index efa080e6af96b55a1a798d74f05ee20d48013848..73d54fb626497324cfa1c3dd74b54f063788a245 100644 --- a/aref.lsp +++ b/arrays/aref.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Feb 11 17:33:24 2003 ;;;; Contains: Tests for AREF -(in-package :cl-test) + ;;; AREF is also tested in many other places diff --git a/array-as-class.lsp b/arrays/array-as-class.lsp similarity index 98% rename from array-as-class.lsp rename to arrays/array-as-class.lsp index 879e090f64193e310e7045d31a584f916da0eae0..183f036fc6d29de54c7527736071d85dfc1e3f01 100644 --- a/array-as-class.lsp +++ b/arrays/array-as-class.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 07:45:25 2003 ;;;; Contains: Tests for ARRAY as a class -(in-package :cl-test) + (deftest array-as-class.1 (notnot-mv (typep #() (find-class 'array))) diff --git a/array-dimension.lsp b/arrays/array-dimension.lsp similarity index 98% rename from array-dimension.lsp rename to arrays/array-dimension.lsp index 25474a8c4e28dade2bc9e113ce8cb38eacab5fa8..7454cd5c484cdda785dbe686bb574c6a44718069 100644 --- a/array-dimension.lsp +++ b/arrays/array-dimension.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 06:55:14 2003 ;;;; Contains: Tests of ARRAY-DIMENSION -(in-package :cl-test) + ;;; array-dimension is also tested by the tests in make-array.lsp diff --git a/array-dimensions.lsp b/arrays/array-dimensions.lsp similarity index 98% rename from array-dimensions.lsp rename to arrays/array-dimensions.lsp index 468e903c408b8fef5e1bf5a47ba538b9d3a3c0a0..3178556b33f40f2a8989bc51f8c28abc1c045ba9 100644 --- a/array-dimensions.lsp +++ b/arrays/array-dimensions.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 06:59:37 2003 ;;;; Contains: Tests of ARRAY-DIMENSIONS -(in-package :cl-test) + ;;; The tests in make-array.lsp also test this function diff --git a/array-displacement.lsp b/arrays/array-displacement.lsp similarity index 99% rename from array-displacement.lsp rename to arrays/array-displacement.lsp index 84ddb212a98b50281531e7776099340599f7d825..f026ffa2f702b76acea8a14f532cf6b324323d53 100644 --- a/array-displacement.lsp +++ b/arrays/array-displacement.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 06:20:51 2003 ;;;; Contains: Tests for ARRAY-DISPLACEMENT -(in-package :cl-test) + ;;; The tests in make-array.lsp also test array-displacement diff --git a/array-element-type.lsp b/arrays/array-element-type.lsp similarity index 97% rename from array-element-type.lsp rename to arrays/array-element-type.lsp index 5cf7ee81d4386b85c518d816cb5c0f3a92548318..97a0168a17afa6bc31d323c0008080ec8eff13f9 100644 --- a/array-element-type.lsp +++ b/arrays/array-element-type.lsp @@ -2,7 +2,7 @@ ;;;; Author: Paul Dietz ;;;; Contains: Tests of the function ARRAY-ELEMENT-TYPE -(in-package :cl-test) + ;;; Mosts tests are in other files, incidental to testing of ;;; other things diff --git a/array-has-fill-pointer-p.lsp b/arrays/array-has-fill-pointer-p.lsp similarity index 98% rename from array-has-fill-pointer-p.lsp rename to arrays/array-has-fill-pointer-p.lsp index fa1eed4248edd18580047a46a6bd39c198bb85e4..380a982077dbe719495bd1c809dfd4fd98d0ed4c 100644 --- a/array-has-fill-pointer-p.lsp +++ b/arrays/array-has-fill-pointer-p.lsp @@ -2,8 +2,6 @@ ;;;; Author: Paul Dietz ;;;; Contains: Tests of the function ARRAY-HAS-FILL-POINTER-P -(in-package :cl-test) - ;;; Many tests are in other files, incidental to testing of ;;; other things @@ -52,5 +50,3 @@ (deftest array-has-fill-pointer-p.error.4 (signals-type-error x nil (array-has-fill-pointer-p x)) t) - - diff --git a/array-in-bounds-p.lsp b/arrays/array-in-bounds-p.lsp similarity index 99% rename from array-in-bounds-p.lsp rename to arrays/array-in-bounds-p.lsp index 6ae0d1253bd41a026cf283f24253a303d2eb2c4e..dc952214533997599334560800b25a294a3a2944 100644 --- a/array-in-bounds-p.lsp +++ b/arrays/array-in-bounds-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 19:57:29 2003 ;;;; Contains: Tests for ARRAY-IN-BOUNDS-P -(in-package :cl-test) + (deftest array-in-bounds-p.1 (array-in-bounds-p #() 0) diff --git a/array-misc.lsp b/arrays/array-misc.lsp similarity index 96% rename from array-misc.lsp rename to arrays/array-misc.lsp index 361b0a406fbbfcb466f0e2ad76214543484faac3..85914227a0eaa8e75e306df94abee1529897737f 100644 --- a/array-misc.lsp +++ b/arrays/array-misc.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Jan 22 21:17:25 2003 ;;;; Contains: Misc. tests of array features -(in-package :cl-test) + (deftest array-dimension-limit.1 (and (<= 1024 array-dimension-limit) t) diff --git a/array-rank.lsp b/arrays/array-rank.lsp similarity index 97% rename from array-rank.lsp rename to arrays/array-rank.lsp index ebc66db6278562f20121dc819ffcf80485cbab60..5fc7b1b8de16174bb0dc03b6176334ef2a566dc2 100644 --- a/array-rank.lsp +++ b/arrays/array-rank.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 20:32:57 2003 ;;;; Contains: Tests for ARRAY-RANK -(in-package :cl-test) + ;;; Most tests for ARRAY-RANK are in make-array.lsp diff --git a/array-row-major-index.lsp b/arrays/array-row-major-index.lsp similarity index 98% rename from array-row-major-index.lsp rename to arrays/array-row-major-index.lsp index c6db17b60a18a25da10bee75aac606955d05abaf..d2843f55f30563f4bad95a7f5286514b1e8f5d01 100644 --- a/array-row-major-index.lsp +++ b/arrays/array-row-major-index.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 21:37:03 2003 ;;;; Contains: Tests of ARRAY-ROW-MAJOR-INDEX -(in-package :cl-test) + ;;; More array-row-major-index tests are in make-array.lsp diff --git a/array-t.lsp b/arrays/array-t.lsp similarity index 99% rename from array-t.lsp rename to arrays/array-t.lsp index d9354fe7495e97040b6cb0011801968219f934d0..2c31d7d4aa1fe0ad6e7b8c16dd6c881878e86582 100644 --- a/array-t.lsp +++ b/arrays/array-t.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 25 11:55:48 2003 ;;;; Contains: Tests of (array t ...) type specifiers -(in-package :cl-test) + ;;; Tests of (array t) diff --git a/array-total-size.lsp b/arrays/array-total-size.lsp similarity index 98% rename from array-total-size.lsp rename to arrays/array-total-size.lsp index 2655175f3e74de1506fa3564b81ebb998240b0c6..89d2dc2976f1b9aacbe3e376ae6b145ca57d21ea 100644 --- a/array-total-size.lsp +++ b/arrays/array-total-size.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 22:01:09 2003 ;;;; Contains: Tests of ARRAY-TOTAL-SIZE -(in-package :cl-test) + ;;; More tests of ARRAY-TOTAL-SIZE are in make-array.lsp diff --git a/array.lsp b/arrays/array.lsp similarity index 99% rename from array.lsp rename to arrays/array.lsp index 75ac0f1f99381fd580224f094136379cb63d656f..85494673b250825f44c43bf323b51cfd5e097216 100644 --- a/array.lsp +++ b/arrays/array.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 25 08:46:58 2003 ;;;; Contains: Tests of the ARRAY type specifier -(in-package :cl-test) + ;;; Tests of array by itself diff --git a/arrayp.lsp b/arrays/arrayp.lsp similarity index 97% rename from arrayp.lsp rename to arrays/arrayp.lsp index 6b354e96aeae402612f7eac6d644498319a41e32..32d1e6a742d48a6dfd0658a1bfbcfb113fdcb001 100644 --- a/arrayp.lsp +++ b/arrays/arrayp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 22:08:21 2003 ;;;; Contains: Tests of ARRAYP -(in-package :cl-test) + ;;; Also tested by make-array.lsp diff --git a/bit-and.lsp b/arrays/bit-and.lsp similarity index 99% rename from bit-and.lsp rename to arrays/bit-and.lsp index d4c5fb629878652571f713ccb9b1a0a85b9ab718..c9d4fa7927f4b44dcf14c0c8be619b0cc59c4db9 100644 --- a/bit-and.lsp +++ b/arrays/bit-and.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Jan 26 18:18:47 2003 ;;;; Contains: Tests of BIT-AND -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-and.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit-andc1.lsp b/arrays/bit-andc1.lsp similarity index 99% rename from bit-andc1.lsp rename to arrays/bit-andc1.lsp index 3997a88b5f8ad0af201fe2ee701333e68ded2d07..94f6abfee53fb8d955e35b00a30d7e486bfaf771 100644 --- a/bit-andc1.lsp +++ b/arrays/bit-andc1.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Jan 26 18:56:39 2003 ;;;; Contains: Tests of BIT-ANDC1 -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-andc1.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit-andc2.lsp b/arrays/bit-andc2.lsp similarity index 99% rename from bit-andc2.lsp rename to arrays/bit-andc2.lsp index 9a20b7ec299a8a47f20a869778f6a4fd6d7765e7..29a4e248c14c5f7d4bfa326b4c4ed61ea8f38a84 100644 --- a/bit-andc2.lsp +++ b/arrays/bit-andc2.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Jan 26 19:01:38 2003 ;;;; Contains: Tests of BIT-ANDC2 -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-andc2.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit-eqv.lsp b/arrays/bit-eqv.lsp similarity index 99% rename from bit-eqv.lsp rename to arrays/bit-eqv.lsp index 5fdfb32972ee4b1bf10589bf4442cf49406b8270..af24af14fca7f4f1829126cacf676836f25569cd 100644 --- a/bit-eqv.lsp +++ b/arrays/bit-eqv.lsp @@ -4,9 +4,9 @@ ;;;; Contains: Tests of BIT-EQV -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-eqv.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit-ior.lsp b/arrays/bit-ior.lsp similarity index 99% rename from bit-ior.lsp rename to arrays/bit-ior.lsp index bad18647a0aec196613f21deaab0ad73929847f3..73918d1daaeb2082d3b9eb5690825cbe75e7625a 100644 --- a/bit-ior.lsp +++ b/arrays/bit-ior.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Jan 26 19:13:34 2003 ;;;; Contains: Tests of BIT-IOR -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-ior.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit-nand.lsp b/arrays/bit-nand.lsp similarity index 99% rename from bit-nand.lsp rename to arrays/bit-nand.lsp index 2cc973295d94cb4e7cd0e0be9b945017ad992ba6..3e633929e2b7e0da933b1d5c708808b8fdb5f203 100644 --- a/bit-nand.lsp +++ b/arrays/bit-nand.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Jan 26 19:16:15 2003 ;;;; Contains: Tests for BIT-NAND -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-nand.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit-nor.lsp b/arrays/bit-nor.lsp similarity index 99% rename from bit-nor.lsp rename to arrays/bit-nor.lsp index cc9a0d76d89cab3eb17aa4f7a07a5a20e74bcb6f..b30d9259444a1781ca8664e34e81cc865db25387 100644 --- a/bit-nor.lsp +++ b/arrays/bit-nor.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Jan 26 19:20:40 2003 ;;;; Contains: Tests for BIT-NOR -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-nor.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit-not.lsp b/arrays/bit-not.lsp similarity index 99% rename from bit-not.lsp rename to arrays/bit-not.lsp index 5fb9aba8b75636663383858bc0de478826ce4f29..012376b0dbbacfb950ad1f1bad0b7c4398fd02af 100644 --- a/bit-not.lsp +++ b/arrays/bit-not.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 19:40:13 2003 ;;;; Contains: Tests of BIT-NOT -(in-package :cl-test) + (deftest bit-not.1 (let ((a1 (make-array nil :element-type 'bit :initial-element 0))) diff --git a/bit-orc1.lsp b/arrays/bit-orc1.lsp similarity index 99% rename from bit-orc1.lsp rename to arrays/bit-orc1.lsp index fddac4738728ac326ccedd15dae1a98d299f9cfd..2f9dc446811e1a0a0b8451f2bd2f8bdb19babfba 100644 --- a/bit-orc1.lsp +++ b/arrays/bit-orc1.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Jan 26 19:25:28 2003 ;;;; Contains: Tests of BIT-ORC1 -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-orc1.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit-orc2.lsp b/arrays/bit-orc2.lsp similarity index 99% rename from bit-orc2.lsp rename to arrays/bit-orc2.lsp index aaec562ec6b066ddcc16bc9a4a84fa31e6d36157..cfc9b223a5b053d1cfdb441cffa8d260749ea53a 100644 --- a/bit-orc2.lsp +++ b/arrays/bit-orc2.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Jan 26 19:31:35 2003 ;;;; Contains: Tests of BIT-ORC2 -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-orc2.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit-vector-p.lsp b/arrays/bit-vector-p.lsp similarity index 98% rename from bit-vector-p.lsp rename to arrays/bit-vector-p.lsp index 2b5af30169bbba8eb4a299791635aacdce26fe56..5fc780ef39f22d9be3d32d24ab760c235f9ce1c1 100644 --- a/bit-vector-p.lsp +++ b/arrays/bit-vector-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 20:16:50 2003 ;;;; Contains: Tests of BIT-VECTOR-P -(in-package :cl-test) + (deftest bit-vector-p.2 (notnot-mv (bit-vector-p #*)) diff --git a/bit-vector.lsp b/arrays/bit-vector.lsp similarity index 99% rename from bit-vector.lsp rename to arrays/bit-vector.lsp index 2c2f0cab8ab85858130b2fdeb34c48d06f907599..e099db2073a300efc974b93543e0c13b81c60fe1 100644 --- a/bit-vector.lsp +++ b/arrays/bit-vector.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 13:03:22 2003 ;;;; Contains: Tests of type BIT-VECTOR -(in-package :cl-test) + (deftest bit-vector.1 (notnot-mv (find-class 'bit-vector)) diff --git a/bit-xor.lsp b/arrays/bit-xor.lsp similarity index 99% rename from bit-xor.lsp rename to arrays/bit-xor.lsp index 0f629cfaf7f90b05ae216e4f22560cdcc4c102ee..c0111b752540613015bbc280b9706810b0cf3afe 100644 --- a/bit-xor.lsp +++ b/arrays/bit-xor.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Jan 26 19:35:46 2003 ;;;; Contains: Tests of BIT-XOR -(in-package :cl-test) -(compile-and-load "bit-aux.lsp") + + (deftest bit-xor.1 (let* ((s1 (make-array nil :initial-element 0 :element-type 'bit)) diff --git a/bit.lsp b/arrays/bit.lsp similarity index 99% rename from bit.lsp rename to arrays/bit.lsp index e043c70f4c0707048d45dd09d4756e6803309210..d012b4cff97b97cb476bbc2abdf9598b8c6a50b4 100644 --- a/bit.lsp +++ b/arrays/bit.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 13:22:59 2003 ;;;; Contains: Tests for accessor BIT -(in-package :cl-test) + (deftest bit.1 (bit #*0010 2) diff --git a/fill-pointer.lsp b/arrays/fill-pointer.lsp similarity index 98% rename from fill-pointer.lsp rename to arrays/fill-pointer.lsp index aa4b4daa6b43a85d5d6059ed6cc20cbaed5f2a93..a77aea6ebf0a043a0e7a0817fb98a75777d52ff6 100644 --- a/fill-pointer.lsp +++ b/arrays/fill-pointer.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 22:14:23 2003 ;;;; Contains: Tests of FILL-POINTER -(in-package :cl-test) + ;;; More tests are in make-array.lsp diff --git a/arrays/load.lsp b/arrays/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..d5f9756885f6dd91eedae2f64785f30683631e1b --- /dev/null +++ b/arrays/load.lsp @@ -0,0 +1,56 @@ +;;; Tests on arrays +(compile-and-load "ANSI-TESTS:AUX;array-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;bit-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "aref.lsp") + (load "array.lsp") + (load "array-t.lsp") + (load "array-as-class.lsp") + (load "simple-array.lsp") + (load "simple-array-t.lsp") + (load "bit-vector.lsp") + (load "simple-bit-vector.lsp") + (load "make-array.lsp") + (load "adjust-array.lsp") + (load "adjustable-array-p.lsp") + (load "array-displacement.lsp") + (load "array-dimension.lsp") + (load "array-dimensions.lsp") + (load "array-element-type.lsp") + (load "array-has-fill-pointer-p.lsp") + (load "array-in-bounds-p.lsp") + (load "array-misc.lsp") + (load "array-rank.lsp") + (load "array-row-major-index.lsp") + (load "array-total-size.lsp") + (load "arrayp.lsp") + (load "fill-pointer.lsp") + (load "row-major-aref.lsp") + (load "simple-vector-p.lsp") + (load "svref.lsp") + (load "upgraded-array-element-type.lsp") + (load "vector.lsp") + (load "vector-pop.lsp") + (load "vector-push.lsp") + (load "vector-push-extend.lsp") + (load "vectorp.lsp") + (load "bit.lsp") + (load "sbit.lsp") + (load "bit-and.lsp") + (load "bit-andc1.lsp") + (load "bit-andc2.lsp") + (load "bit-eqv.lsp") + (load "bit-ior.lsp") + (load "bit-nand.lsp") + (load "bit-nor.lsp") + (load "bit-orc1.lsp") + (load "bit-orc2.lsp") + (load "bit-xor.lsp") + (load "bit-not.lsp") + (load "bit-vector-p.lsp") + (load "simple-bit-vector-p.lsp")) diff --git a/make-array.lsp b/arrays/make-array.lsp similarity index 99% rename from make-array.lsp rename to arrays/make-array.lsp index b7525d5ac7273da58a4911b6c84d0a14052725b1..333cb52f4231d7e5ecbad63509484b1e4a87d2c2 100644 --- a/make-array.lsp +++ b/arrays/make-array.lsp @@ -3,9 +3,9 @@ ;;;; Created: Fri Sep 20 06:47:37 2002 ;;;; Contains: Tests for MAKE-ARRAY -(in-package :cl-test) -(compile-and-load "array-aux.lsp") + + (deftest make-array.1 (let ((a (make-array-with-checks 10))) diff --git a/row-major-aref.lsp b/arrays/row-major-aref.lsp similarity index 99% rename from row-major-aref.lsp rename to arrays/row-major-aref.lsp index 01506015ab88df3f5972c5b0dba927115122948a..2b0cc7f47afbc0d6695ed2a180fb878ff885002c 100644 --- a/row-major-aref.lsp +++ b/arrays/row-major-aref.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Jan 22 20:16:38 2003 ;;;; Contains: Tests of ROW-MAJOR-AREF -(in-package :cl-test) + ;;; ROW-MAJOR-AREF is also used by equalp-with-case (see rt/rt.lsp) diff --git a/sbit.lsp b/arrays/sbit.lsp similarity index 98% rename from sbit.lsp rename to arrays/sbit.lsp index 4775afe22ac7e1e431edcc4573736137078de8e5..8fd040b1cdf559e3bbe1824fbef28e3a66697e7b 100644 --- a/sbit.lsp +++ b/arrays/sbit.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 15:30:31 2003 ;;;; Contains: Tests for SBIT -(in-package :cl-test) + (deftest sbit.1 (sbit #*0010 2) diff --git a/simple-array-t.lsp b/arrays/simple-array-t.lsp similarity index 99% rename from simple-array-t.lsp rename to arrays/simple-array-t.lsp index 874db743c6b2bbecdcaee1ef2a7014fc9cdc49dd..70a69cd7732453f58a3b5452223ffc8f40a8d55b 100644 --- a/simple-array-t.lsp +++ b/arrays/simple-array-t.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 07:23:45 2003 ;;;; Contains: Tests of SIMPLE-ARRAY on T element type -(in-package :cl-test) + ;;; Tests of (simple-array t) diff --git a/simple-array.lsp b/arrays/simple-array.lsp similarity index 99% rename from simple-array.lsp rename to arrays/simple-array.lsp index bbb9f5e341eec3b8a2d7d66b5579d2d3a5f6a02c..0c8212ec67a67e534b00b45b35a98ae068b97ca8 100644 --- a/simple-array.lsp +++ b/arrays/simple-array.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 07:20:31 2003 ;;;; Contains: Tests of SIMPLE-ARRAY -(in-package :cl-test) + ;;; Tests of simple-array by itself diff --git a/simple-bit-vector-p.lsp b/arrays/simple-bit-vector-p.lsp similarity index 98% rename from simple-bit-vector-p.lsp rename to arrays/simple-bit-vector-p.lsp index 37f9cea4a0dd71cb7a98a27d24bcd3e76f77262c..06c169a12ce35b0210d1028b4cd163a9ba52c502 100644 --- a/simple-bit-vector-p.lsp +++ b/arrays/simple-bit-vector-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 20:20:27 2003 ;;;; Contains: Tests of SIMPLE-BIT-VECTOR-P -(in-package :cl-test) + (deftest simple-bit-vector-p.2 (notnot-mv (simple-bit-vector-p #*)) diff --git a/simple-bit-vector.lsp b/arrays/simple-bit-vector.lsp similarity index 98% rename from simple-bit-vector.lsp rename to arrays/simple-bit-vector.lsp index ff56610c30436d045f2d9bb331f41380442860d2..80a8c533b822dfe2b91b98c347d671810bff5c65 100644 --- a/simple-bit-vector.lsp +++ b/arrays/simple-bit-vector.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 13:12:07 2003 ;;;; Contains: Tests for type SIMPLE-BIT-VECTOR -(in-package :cl-test) + (deftest simple-bit-vector.2 (notnot-mv (typep #* 'simple-bit-vector)) diff --git a/simple-vector-p.lsp b/arrays/simple-vector-p.lsp similarity index 98% rename from simple-vector-p.lsp rename to arrays/simple-vector-p.lsp index 48a03d46370aa04d4bfdd319472cbcc67dae3ca1..fd3839573376c1f19ad8f403cf8c187717652302 100644 --- a/simple-vector-p.lsp +++ b/arrays/simple-vector-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Jan 22 21:23:45 2003 ;;;; Contains: Tests for SIMPLE-VECTOR-P -(in-package :cl-test) + ;;; More tests for this are in make-array.lsp diff --git a/svref.lsp b/arrays/svref.lsp similarity index 98% rename from svref.lsp rename to arrays/svref.lsp index 0b8f6d1fbb68a1faf6af5c3b4f56158e1ce8d673..baa44ad96eca887edfa3c31331711dc8fdf79279 100644 --- a/svref.lsp +++ b/arrays/svref.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Jan 22 21:39:30 2003 ;;;; Contains: Tests of SVREF -(in-package :cl-test) + (deftest svref.1 (let ((a (vector 1 2 3 4))) diff --git a/upgraded-array-element-type.lsp b/arrays/upgraded-array-element-type.lsp similarity index 99% rename from upgraded-array-element-type.lsp rename to arrays/upgraded-array-element-type.lsp index ad8f390110231cdfa7fbb9756605630ad82280b6..b4533490be81589b96f8b93ef1dfadc55e4512b1 100644 --- a/upgraded-array-element-type.lsp +++ b/arrays/upgraded-array-element-type.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Jan 22 20:43:55 2003 ;;;; Contains: Tests of UPGRADED-ARRAY-ELEMENT-TYPE -(in-package :cl-test) + (deftest upgraded-array-element-type.1 (let ((upgraded-bit (upgraded-array-element-type 'bit))) diff --git a/vector-pop.lsp b/arrays/vector-pop.lsp similarity index 98% rename from vector-pop.lsp rename to arrays/vector-pop.lsp index d7a31635fb60d1e11c1c4b79a2d8fa049695c769..e64c376cd70871bd8d2d40bb450eb118d6d4c90b 100644 --- a/vector-pop.lsp +++ b/arrays/vector-pop.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Jan 24 07:46:29 2003 ;;;; Contains: Tests for VECTOR-POP -(in-package :cl-test) + (deftest vector-pop.1 (let ((v (make-array '(5) :initial-contents '(a b c d e) diff --git a/vector-push-extend.lsp b/arrays/vector-push-extend.lsp similarity index 99% rename from vector-push-extend.lsp rename to arrays/vector-push-extend.lsp index 996f407e6b5ce649313e4c48f9c7b562bce5e188..80256166d558bc57773806566a94b1f7cf60d7de 100644 --- a/vector-push-extend.lsp +++ b/arrays/vector-push-extend.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 25 08:04:35 2003 ;;;; Contains: Tests for VECTOR-PUSH-EXTEND -(in-package :cl-test) + (deftest vector-push-extend.1 (let ((a (make-array '(5) :fill-pointer 2 diff --git a/vector-push.lsp b/arrays/vector-push.lsp similarity index 99% rename from vector-push.lsp rename to arrays/vector-push.lsp index 83f1fb6a7ccb4b5259efd094f2c1790905382aa7..8288de81fed42727dc510dba4133680ff33a67f8 100644 --- a/vector-push.lsp +++ b/arrays/vector-push.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 25 00:55:43 2003 ;;;; Contains: Tests for VECTOR-PUSH -(in-package :cl-test) + (deftest vector-push.1 (let ((a (make-array '(5) :fill-pointer 2 diff --git a/vector.lsp b/arrays/vector.lsp similarity index 99% rename from vector.lsp rename to arrays/vector.lsp index 23d1536b0f4ab7e50f80f0b2d5ea509deb489d12..2946464fdb20755e2d00ce0700b122251e8dc4fd 100644 --- a/vector.lsp +++ b/arrays/vector.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Jan 23 06:32:02 2003 ;;;; Contains: Tests of VECTOR (type and function) -(in-package :cl-test) + ;;; More tests of type vector in make-array.lsp diff --git a/vectorp.lsp b/arrays/vectorp.lsp similarity index 98% rename from vectorp.lsp rename to arrays/vectorp.lsp index 75683b88399de5abd455b1b7433e02129bdd7a99..c60a8f262444d8831e918d784cb94456e12658d8 100644 --- a/vectorp.lsp +++ b/arrays/vectorp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 13:17:05 2003 ;;;; Contains: Tests for VECTORP -(in-package :cl-test) + (deftest vectorp.1 (vectorp 1) diff --git a/ansi-aux-macros.lsp b/auxiliary/ansi-aux-macros.lsp similarity index 98% rename from ansi-aux-macros.lsp rename to auxiliary/ansi-aux-macros.lsp index 1b49e87fa70eebf4e390b6c5e05c42193dd50a75..6b4b90304e1738a1633f46dc7a1f8089345d7b77 100644 --- a/ansi-aux-macros.lsp +++ b/auxiliary/ansi-aux-macros.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Jul 2 07:05:41 2003 ;;;; Contains: Macros used in ansi-aux and elsewhere. -(in-package :cl-test) + (declaim (optimize (safety 3))) diff --git a/ansi-aux.lsp b/auxiliary/ansi-aux.lsp similarity index 99% rename from ansi-aux.lsp rename to auxiliary/ansi-aux.lsp index b59839bbb546523bfc28cce9c48610be166cbaec..c22e294aad0b640800193bed4d5525d55404b487 100644 --- a/ansi-aux.lsp +++ b/auxiliary/ansi-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Mar 28 17:10:18 1998 ;;;; Contains: Aux. functions for CL-TEST -(in-package :cl-test) + (declaim (optimize (safety 3))) diff --git a/array-aux.lsp b/auxiliary/array-aux.lsp similarity index 99% rename from array-aux.lsp rename to auxiliary/array-aux.lsp index 193867dea2b38cc3d20ee9c85a43951a288bd59e..84c1f33072e4550144b8362daea77f599e7280ca 100644 --- a/array-aux.lsp +++ b/auxiliary/array-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 21 05:11:31 2003 ;;;; Contains: Auxiliary functions for array tests -(in-package :cl-test) + (defun make-array-check-upgrading (type) (subtypep* type (array-element-type (make-array 0 :element-type type)))) diff --git a/backquote-aux.lsp b/auxiliary/backquote-aux.lsp similarity index 98% rename from backquote-aux.lsp rename to auxiliary/backquote-aux.lsp index 7ff2953e6b3b7534e6e098f78345835def4fd8d6..d75303e0b5ef05b85ff4fa5dbfdfa94f3dcd041f 100644 --- a/backquote-aux.lsp +++ b/auxiliary/backquote-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Jun 11 08:04:23 2004 ;;;; Contains: Aux. functions associated with backquote tests -(in-package :cl-test) + ;;; Not yet finished diff --git a/bit-aux.lsp b/auxiliary/bit-aux.lsp similarity index 97% rename from bit-aux.lsp rename to auxiliary/bit-aux.lsp index da0193bba977acb13159bbee3e365b97d5159d4f..3905a607c1f4f25e224fefabf97b5cadf34ff31e 100644 --- a/bit-aux.lsp +++ b/auxiliary/bit-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jul 24 19:25:39 2005 ;;;; Contains: Aux file for BIT-* tests -(in-package :cl-test) + (defun bit-random-test-fn (bit-fn log-fn &key (reps 5000) (maxlen 100)) (assert (typep maxlen '(integer 1))) diff --git a/ceiling-aux.lsp b/auxiliary/ceiling-aux.lsp similarity index 99% rename from ceiling-aux.lsp rename to auxiliary/ceiling-aux.lsp index 6e74c9eecd0c43de01700d61b256434721791adf..29c300bdddd4b9a7a9b07eee40c425298c903d81 100644 --- a/ceiling-aux.lsp +++ b/auxiliary/ceiling-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Aug 19 06:52:02 2003 ;;;; Contains: Aux. functions for CEILING -(in-package :cl-test) + (defun ceiling.1-fn () (loop for n = (- (random 2000000000) diff --git a/char-aux.lsp b/auxiliary/char-aux.lsp similarity index 99% rename from char-aux.lsp rename to auxiliary/char-aux.lsp index bade2ca35c51d56f09f4e17415d31de9ee7b4b90..67f059fff73aec3bc051efdfc521217cee45e375 100644 --- a/char-aux.lsp +++ b/auxiliary/char-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 5 20:15:55 2002 ;;;; Contains: Auxiliary functions for character tests -(in-package :cl-test) + (defun is-ordered-by (seq fn) (declare (type function fn)) diff --git a/cl-symbols-aux.lsp b/auxiliary/cl-symbols-aux.lsp similarity index 98% rename from cl-symbols-aux.lsp rename to auxiliary/cl-symbols-aux.lsp index 0e88f7760e81deda948ee3fd545bc67be295baf2..c6bdbf55fcfb3d437ce2153436eee010464373f4 100644 --- a/cl-symbols-aux.lsp +++ b/auxiliary/cl-symbols-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Nov 28 06:43:51 2002 ;;;; Contains: Aux. functions for cl-symbols.lsp -(in-package :cl-test) + (declaim (optimize (safety 3))) diff --git a/cons-aux.lsp b/auxiliary/cons-aux.lsp similarity index 99% rename from cons-aux.lsp rename to auxiliary/cons-aux.lsp index 6d5003c8bb1bc29b6fd3aeda3af0f43300ee27c0..09596f69a5a5e870ffa8b02f7b4147ce0ad7f883 100644 --- a/cons-aux.lsp +++ b/auxiliary/cons-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Mar 6 17:45:42 2003 ;;;; Contains: Auxiliary functions for cons-related tests -(in-package :cl-test) + ;;; ;;; A scaffold is a structure that is used to remember the object diff --git a/defclass-aux.lsp b/auxiliary/defclass-aux.lsp similarity index 99% rename from defclass-aux.lsp rename to auxiliary/defclass-aux.lsp index cc17f6aa5df082989fdf35010b5722865291ede1..1632e6bf4a0ec97a8631a5e434538637ab167aa8 100644 --- a/defclass-aux.lsp +++ b/auxiliary/defclass-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Mar 24 03:40:24 2003 ;;;; Contains: Auxiliary functions for testing CLOS -(in-package :cl-test) + (defun make-defclass-test-name (&rest args) (intern (apply #'concatenate 'string (mapcar #'string args)) diff --git a/define-condition-aux.lsp b/auxiliary/define-condition-aux.lsp similarity index 99% rename from define-condition-aux.lsp rename to auxiliary/define-condition-aux.lsp index bc179677f40364e2c85d0dc5796ef925c29dbd08..0035046625aaf7af0bb2ddc93c4570e5c5ae1234 100644 --- a/define-condition-aux.lsp +++ b/auxiliary/define-condition-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Mar 9 05:40:13 2003 ;;;; Contains: Auxiliary functions for testing DEFINE-CONDITION -(in-package :cl-test) + (defun make-def-cond-name (name &rest suffixes) (intern (apply #'concatenate 'string (string name) "/" diff --git a/division-aux.lsp b/auxiliary/division-aux.lsp similarity index 92% rename from division-aux.lsp rename to auxiliary/division-aux.lsp index 2cb3c3b4aaa1c44d18f452b5085990f6921312fd..dfcf84b2aa2957433a6dcd715e9091ef8a9f42f7 100644 --- a/division-aux.lsp +++ b/auxiliary/division-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Sep 1 07:57:02 2003 ;;;; Contains: Aux. functions for testing / -(in-package :cl-test) + (defun divide-by-zero-test (&rest args) (handler-case diff --git a/exp-aux.lsp b/auxiliary/exp-aux.lsp similarity index 95% rename from exp-aux.lsp rename to auxiliary/exp-aux.lsp index 2d43194a611621b4a1558b924b93c9f0d110f43a..5f99a0f21adb278aa4597203a94e20b9aa9eeadf 100644 --- a/exp-aux.lsp +++ b/auxiliary/exp-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Sep 1 21:30:38 2003 ;;;; Contains: Aux. functions for testing EXP, EXPT -(in-package :cl-test) + (defun my-exp (x n) "Compute e^x in the appropriate float result type, summing diff --git a/fceiling-aux.lsp b/auxiliary/fceiling-aux.lsp similarity index 96% rename from fceiling-aux.lsp rename to auxiliary/fceiling-aux.lsp index a4542dfd0436371b61685068cc0a3ee490c5b697..ca6c1e1511898c472a94a1bf3869f56d7732ae3a 100644 --- a/fceiling-aux.lsp +++ b/auxiliary/fceiling-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Aug 20 06:24:45 2003 ;;;; Contains: Tests of FCEILING -(in-package :cl-test) + (defun fceiling.1-fn () (loop for n = (- (random 200000) diff --git a/ffloor-aux.lsp b/auxiliary/ffloor-aux.lsp similarity index 96% rename from ffloor-aux.lsp rename to auxiliary/ffloor-aux.lsp index af8ddb898f5c661f729e14a91f47bfbd3f0782e7..14ccd9a287bb5ccb178051ebb3df1106c98c270a 100644 --- a/ffloor-aux.lsp +++ b/auxiliary/ffloor-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Aug 12 07:02:07 2003 ;;;; Contains: Aux. functions used in FFLOOR tests -(in-package :cl-test) + (defun ffloor.1-fn () (loop for n = (- (random 200000) diff --git a/floor-aux.lsp b/auxiliary/floor-aux.lsp similarity index 99% rename from floor-aux.lsp rename to auxiliary/floor-aux.lsp index 0c3153838b4c0611c91417bed80bce09fe97f18c..314d5abc7e142a0d364b72857ba5954502457d9f 100644 --- a/floor-aux.lsp +++ b/auxiliary/floor-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Aug 9 08:08:00 2003 ;;;; Contains: Aux. functions used in FLOOR tests -(in-package :cl-test) + (defun floor.1-fn () (loop for n = (- (random 2000000000) diff --git a/fround-aux.lsp b/auxiliary/fround-aux.lsp similarity index 96% rename from fround-aux.lsp rename to auxiliary/fround-aux.lsp index c21f093c69a5245475cad97e4242c46aeff71d20..9f90613ddc9252fdecb0da22f9263517b5b90321 100644 --- a/fround-aux.lsp +++ b/auxiliary/fround-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Aug 21 16:08:55 2003 ;;;; Contains: Aux. functions for testing FROUND -(in-package :cl-test) + (defun fround.1-fn () (loop for n = (- (random 200000) diff --git a/ftruncate-aux.lsp b/auxiliary/ftruncate-aux.lsp similarity index 96% rename from ftruncate-aux.lsp rename to auxiliary/ftruncate-aux.lsp index 4cb563981bca8352135d8f9c1f97d5105f783c41..aa9d292be33ce3e71ba96365451ec3a8e8677d49 100644 --- a/ftruncate-aux.lsp +++ b/auxiliary/ftruncate-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Aug 20 06:37:01 2003 ;;;; Contains: Aux. functions for testing FTRUNCATE -(in-package :cl-test) + (defun ftruncate.1-fn () (loop for n = (- (random 200000) diff --git a/gcd-aux.lsp b/auxiliary/gcd-aux.lsp similarity index 96% rename from gcd-aux.lsp rename to auxiliary/gcd-aux.lsp index 7e974214a15f32ec76f1551d2ef91305e34d4736..06eeebb0c3353cbb84bf22b34a0edf5950865ead 100644 --- a/gcd-aux.lsp +++ b/auxiliary/gcd-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Sep 3 06:57:22 2003 ;;;; Contains: Aux. functions for testing GCD -(in-package :cl-test) + (defun my-gcd (x y) (cond diff --git a/hash-table-aux.lsp b/auxiliary/hash-table-aux.lsp similarity index 98% rename from hash-table-aux.lsp rename to auxiliary/hash-table-aux.lsp index 6bf3d068a929bab9d3c1b660c22a3dde5e4242be..0d4f96e810fd4a032d59f90c3de3c98017f83fb0 100644 --- a/hash-table-aux.lsp +++ b/auxiliary/hash-table-aux.lsp @@ -3,10 +3,10 @@ ;;;; Created: Sat Oct 4 09:24:24 2003 ;;;; Contains: Aux. functions for testing hash tables -(in-package :cl-test) + (eval-when (:load-toplevel :compile-toplevel :execute) - (compile-and-load "random-aux.lsp")) + (compile-and-load "ANSI-TESTS:AUX;random-aux.lsp")) (defparameter *hash-table-test-iters* 1000) diff --git a/numbers-aux.lsp b/auxiliary/numbers-aux.lsp similarity index 99% rename from numbers-aux.lsp rename to auxiliary/numbers-aux.lsp index b9f3c5f61480d4b4474c88c805504f0a99f4f030..eaa5d5b8adb2ad2ab78e5c0fbc7f176d27ed7196 100644 --- a/numbers-aux.lsp +++ b/auxiliary/numbers-aux.lsp @@ -3,10 +3,10 @@ ;;;; Created: Mon Apr 7 07:24:43 2003 ;;;; Contains: Auxiliary functions for number tests -(in-package :cl-test) + (eval-when (:compile-toplevel :load-toplevel :execute) - (compile-and-load "random-aux.lsp")) + (compile-and-load "ANSI-TESTS:AUX;random-aux.lsp")) ;;; Binary search on reals diff --git a/package-aux.lsp b/auxiliary/package-aux.lsp similarity index 99% rename from package-aux.lsp rename to auxiliary/package-aux.lsp index ac0d9728ddee847ebbad586b23ecc0c220d10318..874c6b09486146260f8918d33568e18e33832233 100644 --- a/package-aux.lsp +++ b/auxiliary/package-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jun 21 20:59:17 2004 ;;;; Contains: Aux. functions for package tests -(in-package :cl-test) + (defmacro test-with-package-iterator (package-list-expr &rest symbol-types) "Build an expression that tests the with-package-iterator form." diff --git a/packages-00.lsp b/auxiliary/packages00-aux.lsp similarity index 98% rename from packages-00.lsp rename to auxiliary/packages00-aux.lsp index 08a0b4f0d870246a090dbc23493bb267928d16aa..5e2ecfd36c1cc9a54eff4985ce1aa9b403a981bb 100644 --- a/packages-00.lsp +++ b/auxiliary/packages00-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 08:07:31 1998 ;;;; Contains: Package test code (common code) -(in-package :cl-test) + (declaim (optimize (safety 3))) (report-and-ignore-errors diff --git a/pathnames-aux.lsp b/auxiliary/pathnames-aux.lsp similarity index 96% rename from pathnames-aux.lsp rename to auxiliary/pathnames-aux.lsp index e17de67164f50b18da4e91571184df465359a954..f203b8d083b4dcdc1b25681dd4a83ea75efd6fe3 100644 --- a/pathnames-aux.lsp +++ b/auxiliary/pathnames-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Dec 6 15:05:05 2003 ;;;; Contains: Functions associated with pathname tests -(in-package :cl-test) + (defun could-be-pathname-designator (x) (or (stringp x) diff --git a/printer-aux.lsp b/auxiliary/printer-aux.lsp similarity index 99% rename from printer-aux.lsp rename to auxiliary/printer-aux.lsp index 5846c67723b27e44ff0ddf1221716d2b74e76e97..d1b3db0987b03298560dbad469611d48116521dc 100644 --- a/printer-aux.lsp +++ b/auxiliary/printer-aux.lsp @@ -3,9 +3,10 @@ ;;;; Created: Mon Feb 23 06:20:00 2004 ;;;; Contains: Auxiliary functions and macros for printer tests -(in-package :cl-test) -(eval-when (:compile-toplevel :load-toplevel :execute) (compile-and-load "random-aux.lsp")) + +(eval-when (:compile-toplevel :load-toplevel :execute) + (compile-and-load "ANSI-TESTS:AUX;random-aux.lsp")) (defmacro def-print-test (name form result &rest bindings) `(deftest ,name diff --git a/random-aux.lsp b/auxiliary/random-aux.lsp similarity index 99% rename from random-aux.lsp rename to auxiliary/random-aux.lsp index 2f91e35606793735eee036e220e479dc4d500346..4135ea2330ee0cc235388c61849383803f0f3971 100644 --- a/random-aux.lsp +++ b/auxiliary/random-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jun 8 06:56:15 2003 ;;;; Contains: Aux. functions and macros used for randomization -(in-package :cl-test) + (declaim (special +standard-chars+ *cl-symbols-vector*)) diff --git a/random-class-aux.lsp b/auxiliary/random-class-aux.lsp similarity index 98% rename from random-class-aux.lsp rename to auxiliary/random-class-aux.lsp index 292e3977ac3400ac2fedd305b003d68d80348dc4..3d53d05cf2d9eb2e2b5710720298901c2440b707 100644 --- a/random-class-aux.lsp +++ b/auxiliary/random-class-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Oct 10 07:14:30 2004 ;;;; Contains: Aux. functions for random tests on classes -(in-package :cl-test) + (defun random-class-1-fn (&key (n 10) (rep 1000)) "Randomly break and recreate a linear chain of class definitions" diff --git a/reader-aux.lsp b/auxiliary/reader-aux.lsp similarity index 98% rename from reader-aux.lsp rename to auxiliary/reader-aux.lsp index 490f3f60a5ad7dd2aa7184cbb3af9075af75568a..c84ed28b71453a8a43c24a15b8bc5abb612f1069 100644 --- a/reader-aux.lsp +++ b/auxiliary/reader-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Jan 14 07:43:48 2005 ;;;; Contains: Auxiliary functions and macros for reader tests -(in-package :cl-test) + ;;; Define a test using standard io syntax diff --git a/remove-aux.lsp b/auxiliary/remove-aux.lsp similarity index 99% rename from remove-aux.lsp rename to auxiliary/remove-aux.lsp index 94a1ebc997918cdf3824cf2d71b1f1069c948fd4..326b96596c8ee4153a7a89a7b1ed20155d8f869b 100644 --- a/remove-aux.lsp +++ b/auxiliary/remove-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Sep 15 07:42:36 2002 ;;;; Contains: Auxiliary functions for testing REMOVE and related functions -(in-package :cl-test) + (defun make-random-element (type) (cond diff --git a/remove-duplicates-aux.lsp b/auxiliary/remove-duplicates-aux.lsp similarity index 99% rename from remove-duplicates-aux.lsp rename to auxiliary/remove-duplicates-aux.lsp index 0207d32936b4cd2a8a4133490d0379221f1c87b5..de1d5fc5ed603aed66cad1eafc1c4841043ad08b 100644 --- a/remove-duplicates-aux.lsp +++ b/auxiliary/remove-duplicates-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Sep 23 20:59:10 2002 ;;;; Contains: Aux. functions for testing REMOVE-DUPLICATES/DELETE-DUPLICATES -(in-package :cl-test) + (defun my-remove-duplicates (orig-sequence &key from-end test test-not (start 0) end key) diff --git a/round-aux.lsp b/auxiliary/round-aux.lsp similarity index 99% rename from round-aux.lsp rename to auxiliary/round-aux.lsp index 5eb4a44f5add42b8d41f0a189220eb99daa863fb..97756d12e0221feafba5796aa01b0e20376485b3 100644 --- a/round-aux.lsp +++ b/auxiliary/round-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Aug 21 14:21:07 2003 ;;;; Contains: Aux. functions for testing ROUND -(in-package :cl-test) + (defun round.1-fn () (loop for n = (- (random 2000000000) diff --git a/search-aux.lsp b/auxiliary/search-aux.lsp similarity index 99% rename from search-aux.lsp rename to auxiliary/search-aux.lsp index c2e6c579b387ca033eced6988a70b599ee607de7..0e442c56d798ff41bf33281e7bb449990b1d9854 100644 --- a/search-aux.lsp +++ b/auxiliary/search-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Aug 24 07:22:10 2002 ;;;; Contains: Aux. functions for testing SEARCH -(in-package :cl-test) + (defparameter *searched-list* '(b b a b b b b b b b a b a b b b a b a b b b a a a a b a a b a a a a a diff --git a/sort-aux.lsp b/auxiliary/sort-aux.lsp similarity index 98% rename from sort-aux.lsp rename to auxiliary/sort-aux.lsp index 96119fd5aca56301928f0ad249a3223db568da11..9601e389bdd25f53444e8bee288391c2c9093b20 100644 --- a/sort-aux.lsp +++ b/auxiliary/sort-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Jul 17 06:42:27 2003 ;;;; Contains: Routines for testing SORT, NSORT -(in-package :cl-test) + (defun my-numeric-sort (list) "Sort (nondestructively) a list of reals." diff --git a/string-aux.lsp b/auxiliary/string-aux.lsp similarity index 98% rename from string-aux.lsp rename to auxiliary/string-aux.lsp index be4d9080c21b45782ba8770b631817cb06d25eb8..c7f16c42610ca98e888902ebb731672a73d552a2 100644 --- a/string-aux.lsp +++ b/auxiliary/string-aux.lsp @@ -3,10 +3,10 @@ ;;;; Created: Fri Oct 4 06:51:32 2002 ;;;; Contains: Auxiliary functions for string testing -(in-package :cl-test) + (eval-when (:compile-toplevel :load-toplevel :execute) - (compile-and-load "random-aux.lsp")) + (compile-and-load "ANSI-TESTS:AUX;random-aux.lsp")) (defun my-string-compare (string1 string2 comparison &key (start1 0) end1 (start2 0) end2 case diff --git a/subseq-aux.lsp b/auxiliary/subseq-aux.lsp similarity index 99% rename from subseq-aux.lsp rename to auxiliary/subseq-aux.lsp index fba5149a95be92c64da414b6bcd3ce501e17f5c6..585aca1e2438d96fc5c8122413840ad826b3cb92 100644 --- a/subseq-aux.lsp +++ b/auxiliary/subseq-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Nov 26 20:01:27 2002 ;;;; Contains: Aux. functions for subseq tests -(in-package :cl-test) + (defun subseq-list.4-body () (block done diff --git a/times-aux.lsp b/auxiliary/times-aux.lsp similarity index 96% rename from times-aux.lsp rename to auxiliary/times-aux.lsp index 64137b706459d97f2423dbfb044b8d9fabf9e559..b74a787128e29bf66bc7d34e84a4da346cb1a794 100644 --- a/times-aux.lsp +++ b/auxiliary/times-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Aug 28 11:23:40 2003 ;;;; Contains: Auxiliary functions for testing the multiplication operator * -(in-package :cl-test) + (defun integer-times (x y) (assert (integerp x)) diff --git a/truncate-aux.lsp b/auxiliary/truncate-aux.lsp similarity index 99% rename from truncate-aux.lsp rename to auxiliary/truncate-aux.lsp index c99d2b50709bf1a93fd8c2b28fd1cc52ad1222ed..aabdfa8eb87f6853f1566874ab256235055f56df 100644 --- a/truncate-aux.lsp +++ b/auxiliary/truncate-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Aug 20 05:15:17 2003 ;;;; Contains: Aux. functions associated with tests of TRUNCATE -(in-package :cl-test) + (defun truncate.1-fn () (loop for n = (- (random 2000000000) diff --git a/types-aux.lsp b/auxiliary/types-aux.lsp similarity index 99% rename from types-aux.lsp rename to auxiliary/types-aux.lsp index efbba764773238861358bf2e3e0422003c84f3b5..091af89e772180f304698eadc65c6a068bccac9e 100644 --- a/types-aux.lsp +++ b/auxiliary/types-aux.lsp @@ -3,8 +3,6 @@ ;;;; Created: Mon Jun 21 20:14:38 2004 ;;;; Contains: Aux. functions for types tests -(in-package :cl-test) - (defun classes-are-disjoint (c1 c2) "If either c1 or c2 is a builtin class or the name of a builtin class, then check for disjointness. Return a non-NIL list diff --git a/char-compare.lsp b/characters/char-compare.lsp similarity index 99% rename from char-compare.lsp rename to characters/char-compare.lsp index 7799c680198bcb23f78bb872647caeb8dcb297b1..8054d4bc84c7e52190fdd1609e307d992a9baf46 100644 --- a/char-compare.lsp +++ b/characters/char-compare.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 5 19:36:00 2002 ;;;; Contains: Tests of character comparison functions -(in-package :cl-test) + ;;; The character comparisons should throw a PROGRAM-ERROR when ;;; safe-called with no arguments diff --git a/character.lsp b/characters/character.lsp similarity index 99% rename from character.lsp rename to characters/character.lsp index 1f2ef5f5646d8cfc3cc18fe94b94051973fc7529..a8b768ca131bb2cdf10d5060e8a6a7e437716466 100644 --- a/character.lsp +++ b/characters/character.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 5 12:52:18 2002 ;;;; Contains: Tests associated with the class CHARACTER -(in-package :cl-test) + (deftest character-class.1 (subtypep* 'character t) diff --git a/characters/load.lsp b/characters/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..232d8b1b9f14e45830f943de0560c9c5249cbf98 --- /dev/null +++ b/characters/load.lsp @@ -0,0 +1,12 @@ +;;;; Character tests +(compile-and-load "ANSI-TESTS:AUX;char-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "character.lsp") + (load "char-compare.lsp") + (load "name-char.lsp") +) diff --git a/name-char.lsp b/characters/name-char.lsp similarity index 98% rename from name-char.lsp rename to characters/name-char.lsp index d60862c11716c0b44b85498e9711c95a35f53738..aae29892b37cd1441c566199803ecdb737adfb93 100644 --- a/name-char.lsp +++ b/characters/name-char.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 29 17:14:03 2004 ;;;; Contains: Tests of NAME-CHAR -(in-package :cl-test) -(compile-and-load "char-aux.lsp") + + (deftest name-char.1 (name-char.1.body) diff --git a/abort.lsp b/conditions/abort.lsp similarity index 98% rename from abort.lsp rename to conditions/abort.lsp index f249953ebea3f23f7aad72831b56fc953b2b25df..a99aa143baf3859a672636850355e66715fbf04f 100644 --- a/abort.lsp +++ b/conditions/abort.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Mar 23 08:25:50 2003 ;;;; Contains: Tests of the ABORT restart and function -(in-package :cl-test) + (deftest abort.1 (restart-case diff --git a/assert.lsp b/conditions/assert.lsp similarity index 98% rename from assert.lsp rename to conditions/assert.lsp index ac50ebeda5222179edaf253c4fa262be60bdbc2c..38eee2307d5e94629e107b4244fb20f7bb0ddcc4 100644 --- a/assert.lsp +++ b/conditions/assert.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 28 06:48:19 2003 ;;;; Contains: Tests of ASSERT -(in-package :cl-test) + (deftest assert.1 (assert t) diff --git a/cell-error-name.lsp b/conditions/cell-error-name.lsp similarity index 98% rename from cell-error-name.lsp rename to conditions/cell-error-name.lsp index 0ea7d46b5b7a0307312f43a1a22f3cc77a6c6c8d..83b7e559ecb314c023f38a7ff820b05fd69d282e 100644 --- a/cell-error-name.lsp +++ b/conditions/cell-error-name.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jan 27 22:36:48 2003 ;;;; Contains: Tests of CELL-ERROR-NAME -(in-package :cl-test) + (deftest cell-error-name.1 (handler-case diff --git a/cerror.lsp b/conditions/cerror.lsp similarity index 98% rename from cerror.lsp rename to conditions/cerror.lsp index 10f5c3c2fc50bd0e29ad3e969014efbecfb8d8a6..1f278c40b6e2480a08926d67efdb592cefd771ad 100644 --- a/cerror.lsp +++ b/conditions/cerror.lsp @@ -4,7 +4,7 @@ ;;;; Contains: Tests of CERROR -(in-package :cl-test) + (deftest cerror.1 (let ((fmt "Cerror")) diff --git a/check-type.lsp b/conditions/check-type.lsp similarity index 99% rename from check-type.lsp rename to conditions/check-type.lsp index 66cbb32353fd4965051d71b5c62210ef101270de..7749c8143333b66bd575512f039a9f86640bd75b 100644 --- a/check-type.lsp +++ b/conditions/check-type.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Feb 15 20:12:04 2003 ;;;; Contains: Tests of CHECK-TYPE -(in-package :cl-test) + (deftest check-type.1 (let ((x 'a)) diff --git a/compute-restarts.lsp b/conditions/compute-restarts.lsp similarity index 99% rename from compute-restarts.lsp rename to conditions/compute-restarts.lsp index 3890c55a420ea95e407f6aad200eedaf17f0ab4d..a16d06feeedc62ccb70a13a9cfab3e3817560219 100644 --- a/compute-restarts.lsp +++ b/conditions/compute-restarts.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Mar 22 23:48:53 2003 ;;;; Contains: Tests of COMPUTE-RESTARTS -(in-package :cl-test) + (deftest compute-restarts.1 (loop for r in (compute-restarts) diff --git a/condition.lsp b/conditions/condition.lsp similarity index 99% rename from condition.lsp rename to conditions/condition.lsp index 0a52a4d8844599fd7b413efae7e4d55fcdd3cdb5..2a967882e13fd5a51c6ddcecb1e618a7e26867cd 100644 --- a/condition.lsp +++ b/conditions/condition.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jan 27 22:13:25 2003 ;;;; Contains: Tests of class CONDITION -(in-package :cl-test) + (deftest condition.1 (notnot-mv (find-class 'condition nil)) diff --git a/continue.lsp b/conditions/continue.lsp similarity index 98% rename from continue.lsp rename to conditions/continue.lsp index ba063ab85ecead1ccd5358cdf78c561380560206..35cecf43d151ea390ace82d2d65c297c8762154a 100644 --- a/continue.lsp +++ b/conditions/continue.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Mar 23 08:37:15 2003 ;;;; Contains: Tests of CONTINUE restart and function -(in-package :cl-test) + (deftest continue.1 (restart-case diff --git a/define-condition.lsp b/conditions/define-condition.lsp similarity index 99% rename from define-condition.lsp rename to conditions/define-condition.lsp index cba8fd5f16382d47b79a7dbc759d0267b8bb4f29..ae02b60cf1ee9b62410c8897d940197f56a5f961 100644 --- a/define-condition.lsp +++ b/conditions/define-condition.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Mar 8 22:38:53 2003 ;;;; Contains: Tests of DEFINE-CONDITION (part 1) -(in-package :cl-test) + ;;; diff --git a/error.lsp b/conditions/error.lsp similarity index 99% rename from error.lsp rename to conditions/error.lsp index 970424b66ce5bd2a53817c4135f1c80e65b0731d..30fb68966c0a0979fb3b0209b5cd00c8b3ec58c5 100644 --- a/error.lsp +++ b/conditions/error.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 28 21:37:43 2003 ;;;; Contains: Tests of ERROR -(in-package :cl-test) + (deftest error.1 (let ((fmt "Error")) diff --git a/handler-bind.lsp b/conditions/handler-bind.lsp similarity index 99% rename from handler-bind.lsp rename to conditions/handler-bind.lsp index 24c20904a67d52f7c53c25b72bdaddba3fc545ff..53ebb2bfd05b448cba80426f08ed46117e266f57 100644 --- a/handler-bind.lsp +++ b/conditions/handler-bind.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Feb 28 22:07:25 2003 ;;;; Contains: Tests of HANDLER-BIND -(in-package :cl-test) + (deftest handler-bind.1 (handler-bind ()) diff --git a/handler-case.lsp b/conditions/handler-case.lsp similarity index 99% rename from handler-case.lsp rename to conditions/handler-case.lsp index 456f1678467009420f0a1fd93c15a4e1e5e5f1f9..2101280aa0545c672a7b0031f7d5da588b99e862 100644 --- a/handler-case.lsp +++ b/conditions/handler-case.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Mar 1 14:08:07 2003 ;;;; Contains: Tests of HANDLER-CASE -(in-package :cl-test) + (deftest handler-case.1 (handler-case diff --git a/ignore-errors.lsp b/conditions/ignore-errors.lsp similarity index 97% rename from ignore-errors.lsp rename to conditions/ignore-errors.lsp index ae2f54c4aaf2635fb1f23cb14a4936d49c599ab3..87ed5a5cf3ebefd853e6b5e6dc17d8db663f5b69 100644 --- a/ignore-errors.lsp +++ b/conditions/ignore-errors.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Mar 2 20:38:25 2003 ;;;; Contains: Tests of IGNORE-ERRORS -(in-package :cl-test) + (deftest ignore-errors.1 (ignore-errors) diff --git a/invoke-debugger.lsp b/conditions/invoke-debugger.lsp similarity index 98% rename from invoke-debugger.lsp rename to conditions/invoke-debugger.lsp index 5a7655b06c20acfe9d63ea438169db07a9020e49..88d591fe0eb27e54b03bdadd3958a17ddd144243 100644 --- a/invoke-debugger.lsp +++ b/conditions/invoke-debugger.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Feb 28 21:59:57 2003 ;;;; Contains: Tests of INVOKE-DEBUGGER -(in-package :cl-test) + ;;; We can't test actual entry into the debugger, but we can test ;;; that the function in *debugger-hook* is properly called. diff --git a/conditions/load.lsp b/conditions/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..736452e5a844a2ed7fecaf759c2623056c928dd0 --- /dev/null +++ b/conditions/load.lsp @@ -0,0 +1,33 @@ +;;; Tests of conditions +(compile-and-load "ANSI-TESTS:AUX;types-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;define-condition-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "condition.lsp") + (load "cell-error-name.lsp") + (load "assert.lsp") + (load "error.lsp") + (load "cerror.lsp") + (load "check-type.lsp") + (load "warn.lsp") + (load "invoke-debugger.lsp") + (load "handler-bind.lsp") + (load "handler-case.lsp") + (load "ignore-errors.lsp") + (load "define-condition.lsp") + (load "compute-restarts.lsp") + (load "restart-bind.lsp") + (load "restart-case.lsp") + (load "with-condition-restarts.lsp") + (load "with-simple-restart.lsp") + (load "abort.lsp") + (load "muffle-warning.lsp") + (load "continue.lsp") + (load "store-value.lsp") + (load "use-value.lsp") + (load "make-condition.lsp") +) diff --git a/make-condition.lsp b/conditions/make-condition.lsp similarity index 98% rename from make-condition.lsp rename to conditions/make-condition.lsp index ace4097dcfc9988392eeb4b54c6ffa868fa67f35..f81fd732cee67e404245bea06a8b2c9e31f50854 100644 --- a/make-condition.lsp +++ b/conditions/make-condition.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Jun 23 11:54:10 2005 ;;;; Contains: Tests of MAKE-CONDITION -(in-package :cl-test) + (deftest make-condition.1 diff --git a/muffle-warning.lsp b/conditions/muffle-warning.lsp similarity index 98% rename from muffle-warning.lsp rename to conditions/muffle-warning.lsp index f09b57ad8064c92d571dadc74f26e0e7f794e900..291656cd9cfe9a0c7c29e286b94cdbf86d915a1d 100644 --- a/muffle-warning.lsp +++ b/conditions/muffle-warning.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Mar 23 08:46:05 2003 ;;;; Contains: Tests of the MUFFLE-WARNING restart and function -(in-package :cl-test) + (deftest muffle-warning.1 (restart-case diff --git a/restart-bind.lsp b/conditions/restart-bind.lsp similarity index 99% rename from restart-bind.lsp rename to conditions/restart-bind.lsp index 152fb91e500508496bfd2491ce094fcfea58a622..cd5e22d490a931317f02843396c808cbeb89e965 100644 --- a/restart-bind.lsp +++ b/conditions/restart-bind.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Mar 21 22:28:53 2003 ;;;; Contains: Tests for RESTART-BIND -(in-package :cl-test) + (deftest restart-bind.1 (restart-bind () nil) diff --git a/restart-case.lsp b/conditions/restart-case.lsp similarity index 99% rename from restart-case.lsp rename to conditions/restart-case.lsp index 4137ca73e6bfd805dbf8cccc6e3d7cc2ad2d611d..b11424b9d5f59881660d973896b9720ed5028f38 100644 --- a/restart-case.lsp +++ b/conditions/restart-case.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Mar 22 06:58:03 2003 ;;;; Contains: Tests for RESTART-CASE -(in-package :cl-test) + (deftest restart-case.1 (restart-case (values))) diff --git a/store-value.lsp b/conditions/store-value.lsp similarity index 98% rename from store-value.lsp rename to conditions/store-value.lsp index 464f4e49308a7c9d9675066fd43bb309354dde5b..3901a14aee202873d433190129ccdb9f13a3bbdb 100644 --- a/store-value.lsp +++ b/conditions/store-value.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Mar 23 09:10:22 2003 ;;;; Contains: Tests for STORE-VALUE restart and function -(in-package :cl-test) + (deftest store-value.1 (restart-case diff --git a/use-value.lsp b/conditions/use-value.lsp similarity index 98% rename from use-value.lsp rename to conditions/use-value.lsp index aca83b433b6df05709a7bc5007318695dbd32078..9c596337f0f707ada7ccdc0717d2b9e570d0bb43 100644 --- a/use-value.lsp +++ b/conditions/use-value.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Mar 23 09:13:59 2003 ;;;; Contains: Tests for USE-VALUE restart and function -(in-package :cl-test) + (deftest use-value.1 (restart-case diff --git a/warn.lsp b/conditions/warn.lsp similarity index 99% rename from warn.lsp rename to conditions/warn.lsp index 5d8cfb239329a8cd0eae273be9126ef36760e2b5..699cae8af7781aa7caba7d844df4dc42c18a1dde 100644 --- a/warn.lsp +++ b/conditions/warn.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 23 20:48:12 2003 ;;;; Contains: Tests for WARN -(in-package :cl-test) + (deftest warn.1 (let ((warned nil)) diff --git a/with-condition-restarts.lsp b/conditions/with-condition-restarts.lsp similarity index 99% rename from with-condition-restarts.lsp rename to conditions/with-condition-restarts.lsp index 655fa54c3ab39ac2da8a7b73152b0ace4cb51791..644776279739f887a92fe4c5020c359997b1f0a8 100644 --- a/with-condition-restarts.lsp +++ b/conditions/with-condition-restarts.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Mar 23 04:06:06 2003 ;;;; Contains: Tests of WITH-CONDITION-RESTARTS -(in-package :cl-test) + (deftest with-condition-restarts.1 (let (a b c (i 0)) diff --git a/with-simple-restart.lsp b/conditions/with-simple-restart.lsp similarity index 97% rename from with-simple-restart.lsp rename to conditions/with-simple-restart.lsp index 49207ea95fea695a852aab2fe9125d626a25ed54..4f4a71236754ef1cc04fc67c83083add687b24b8 100644 --- a/with-simple-restart.lsp +++ b/conditions/with-simple-restart.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Mar 23 04:36:52 2003 ;;;; Contains: Tests for WITH-SIMPLE-RESTART -(in-package :cl-test) + (deftest with-simple-restart.1 (with-simple-restart (foo "")) diff --git a/acons.lsp b/cons/acons.lsp similarity index 96% rename from acons.lsp rename to cons/acons.lsp index f6da8ea54f9066244acfc0b6903def75ed3f73da..6025153858f0be3293fc723987ddd207fa477de6 100644 --- a/acons.lsp +++ b/cons/acons.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:26:48 2003 ;;;; Contains: Tests of ACONS -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest acons.1 (let* ((x (copy-tree '((c . d) (e . f)))) diff --git a/adjoin.lsp b/cons/adjoin.lsp similarity index 99% rename from adjoin.lsp rename to cons/adjoin.lsp index c5b5a3c6c1fbfd2cf036c49ee7331dbbfcb2497e..bb33f032ad7fa22eb2fda7050d38dabd7c52cc95 100644 --- a/adjoin.lsp +++ b/cons/adjoin.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Mar 28 07:33:20 1998 ;;;; Contains: Tests of ADJOIN -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest adjoin.1 (adjoin 'a nil) diff --git a/append.lsp b/cons/append.lsp similarity index 97% rename from append.lsp rename to cons/append.lsp index eb49d6a9cd50cec7b551b26d96a142be931c7a69..ff4933aef99db2cc40adb97fefe3219044280483 100644 --- a/append.lsp +++ b/cons/append.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:36:46 2003 ;;;; Contains: Tests of APPEND -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest append.1 (append) diff --git a/assoc-if-not.lsp b/cons/assoc-if-not.lsp similarity index 98% rename from assoc-if-not.lsp rename to cons/assoc-if-not.lsp index 37a969acd4b0871306fd49626797e8abf2d1b9fe..6a53e99f2b4afb975100d09c3f758c95f68f5b44 100644 --- a/assoc-if-not.lsp +++ b/cons/assoc-if-not.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:28:37 2003 ;;;; Contains: Tests of ASSOC-IF-NOT -(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)))) diff --git a/assoc-if.lsp b/cons/assoc-if.lsp similarity index 98% rename from assoc-if.lsp rename to cons/assoc-if.lsp index 2dd39d9f9da74e3c6229a14bea6c2b168f017636..48723f11ddfa5bc861f45a1451718cf2c4a81dee 100644 --- a/assoc-if.lsp +++ b/cons/assoc-if.lsp @@ -3,9 +3,7 @@ ;;;; Created: Sun Apr 20 07:27:57 2003 ;;;; Contains: Tests of ASSOC-IF -(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/assoc.lsp b/cons/assoc.lsp similarity index 99% rename from assoc.lsp rename to cons/assoc.lsp index b2cbb88599fb83ddeaedb10356bd89e6cacbde3e..bbe38bb3c1f4ec2faaf099066357956f5ce3a80e 100644 --- a/assoc.lsp +++ b/cons/assoc.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:27:20 2003 ;;;; Contains: Tests of ASSOC -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest assoc.1 (assoc nil nil) diff --git a/atom.lsp b/cons/atom.lsp similarity index 90% rename from atom.lsp rename to cons/atom.lsp index 9e1e57e751eac9e45d2fcf0d3995cec1f3a734ec..85a0759eb9fad3eee15be6f2972cddd09e3d5e04 100644 --- a/atom.lsp +++ b/cons/atom.lsp @@ -3,9 +3,7 @@ ;;;; Created: Sat Apr 19 21:28:09 2003 ;;;; Contains: Tests of ATOM -(in-package :cl-test) -; (compile-and-load "cons-aux.lsp") (deftest atom.1 (loop for x in *universe* diff --git a/butlast.lsp b/cons/butlast.lsp similarity index 97% rename from butlast.lsp rename to cons/butlast.lsp index f8c9811eeedd7da41e1d4642d00a03f6f68e400f..86e3fe710720fd02139b800c71f8738dd9382878 100644 --- a/butlast.lsp +++ b/cons/butlast.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:41:14 2003 ;;;; Contains: Tests of BUTLAST -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest butlast.1 (let ((x (list 'a 'b 'c 'd 'e))) diff --git a/cons-test-01.lsp b/cons/cons-test-01.lsp similarity index 98% rename from cons-test-01.lsp rename to cons/cons-test-01.lsp index 28ba178a4b5324b5adf01c8f3371e00aeb844e94..1c64cfc51fa7c38d5e938d08075f1f699d73aafd 100644 --- a/cons-test-01.lsp +++ b/cons/cons-test-01.lsp @@ -3,11 +3,11 @@ ;;;; Created: Sat Mar 28 07:29:48 1998 ;;;; Contains: Testing of CL Features related to "CONS", part 1 -(in-package :cl-test) + (declaim (optimize (safety 3))) -(compile-and-load "cons-aux.lsp") + ;; ;; Test the subtype relationships between null, list, cons and atom diff --git a/cons-test-03.lsp b/cons/cons-test-03.lsp similarity index 92% rename from cons-test-03.lsp rename to cons/cons-test-03.lsp index 43173434b17c2a964ab07aae4f1733559810cc65..b94f82b56454c1b5f67bbb49c8cba83fef4e22d1 100644 --- a/cons-test-03.lsp +++ b/cons/cons-test-03.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Mar 28 07:32:20 1998 ;;;; Contains: Testing of CL Features related to "CONS", part 3 -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; (typep <obj> 'list) diff --git a/cons-test-05.lsp b/cons/cons-test-05.lsp similarity index 98% rename from cons-test-05.lsp rename to cons/cons-test-05.lsp index f56d087a5a57003143dee663d5f4514e7d6d147b..ef433b37725201e4951afcfded4badf7a856cad9 100644 --- a/cons-test-05.lsp +++ b/cons/cons-test-05.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Mar 28 07:34:08 1998 ;;;; Contains: Testing of CL Features related to "CONS", part 5 -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (defparameter *cons-accessors* '(first second third fourth fifth sixth seventh eighth ninth tenth diff --git a/cons.lsp b/cons/cons.lsp similarity index 94% rename from cons.lsp rename to cons/cons.lsp index 565c122f2ebe3fd54d22ddec476d5b715382aeb8..3882f99fec474c8e31f301082885ad0dd4f391c4 100644 --- a/cons.lsp +++ b/cons/cons.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:24:25 2003 ;;;; Contains: Tests for CONS -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + ;;; Various easy tests of cons diff --git a/consp.lsp b/cons/consp.lsp similarity index 95% rename from consp.lsp rename to cons/consp.lsp index c2e7f4c3e3936d9ab9d30a5d9e7ce92e3fe10c5c..e5b22c2120faf2fe1fc590f6e1e3b5f91b2e4bfc 100644 --- a/consp.lsp +++ b/cons/consp.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:27:16 2003 ;;;; Contains: Tests of CONSP -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + ;; Lists satisfy consp (deftest consp-list diff --git a/copy-alist.lsp b/cons/copy-alist.lsp similarity index 95% rename from copy-alist.lsp rename to cons/copy-alist.lsp index 41e3739f0d5441cc44728b62025cc74ba03a533d..2e0067dd041bae160ac18c9adf302ed3af34574e 100644 --- a/copy-alist.lsp +++ b/cons/copy-alist.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:29:07 2003 ;;;; Contains: Tests of COPY-ALIST -(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) diff --git a/copy-list.lsp b/cons/copy-list.lsp similarity index 93% rename from copy-list.lsp rename to cons/copy-list.lsp index c085c0898d537364d71cf69efa9e47cedb08f33c..968661c693ba1370c7460b472ba4f80245215676 100644 --- a/copy-list.lsp +++ b/cons/copy-list.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:55:19 2003 ;;;; Contains: Tests of COPY-LIST -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest copy-list.1 (check-copy-list '(a b c d)) diff --git a/copy-tree.lsp b/cons/copy-tree.lsp similarity index 95% rename from copy-tree.lsp rename to cons/copy-tree.lsp index 8dd04243cc83169163b37fcb0046840d75d7c591..2340ecabdeef16cad81f8852128d09d4706e9403 100644 --- a/copy-tree.lsp +++ b/cons/copy-tree.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:31:33 2003 ;;;; Contains: Tests of COPY-TREE -(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 diff --git a/cxr.lsp b/cons/cxr.lsp similarity index 99% rename from cxr.lsp rename to cons/cxr.lsp index ae892d19b5badcbd71d199a1d690dfbaf1a3820e..2f27d9f507938ebedfc40ab8c0400c2c99f88692 100644 --- a/cxr.lsp +++ b/cons/cxr.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:28:38 2003 ;;;; Contains: Tests of C*R functions -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + ;; Tests of car, cdr and compound forms (deftest cons.23 diff --git a/endp.lsp b/cons/endp.lsp similarity index 92% rename from endp.lsp rename to cons/endp.lsp index 1b5323ced0457308902ace781e121a25881bef83..7baea4593a882124492f20c60f58c41006f24ade 100644 --- a/endp.lsp +++ b/cons/endp.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Mar 28 07:34:40 1998 ;;;; Contains: Tests of ENDP -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest endp-nil (notnot-mv (endp nil)) diff --git a/get-properties.lsp b/cons/get-properties.lsp similarity index 97% rename from get-properties.lsp rename to cons/get-properties.lsp index f38831e0c0893f3f26e95b9c48ab19516861cdf2..318b7073af6751a1a6c240c76ee988820db61dd3 100644 --- a/get-properties.lsp +++ b/cons/get-properties.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:37:00 2003 ;;;; Contains: Tests of GET-PROPERTIES -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest get-properties.1 (get-properties nil nil) diff --git a/getf.lsp b/cons/getf.lsp similarity index 98% rename from getf.lsp rename to cons/getf.lsp index c63feb51a72fe2c4dcb7708859eea6fd5bf7ee9b..da57dbf95df1cbce7dbfa7e8d110a6fd848b15cd 100644 --- a/getf.lsp +++ b/cons/getf.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:37:41 2003 ;;;; Contains: Tests of GETF -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest getf.1 (getf nil 'a) diff --git a/intersection.lsp b/cons/intersection.lsp similarity index 99% rename from intersection.lsp rename to cons/intersection.lsp index 574a405a42619a9d036b13b2cb0e414dee4443fe..7f3b0b24fbafc1568d7396b8e5a5fb15e23db3cb 100644 --- a/intersection.lsp +++ b/cons/intersection.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:39:19 2003 ;;;; Contains: Tests of INTERSECTION -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest intersection.1 (intersection nil nil) diff --git a/last.lsp b/cons/last.lsp similarity index 97% rename from last.lsp rename to cons/last.lsp index 2323d54507b9c6c6e13616185fbe13af2e7d60a9..56f36b8c1fc0fb0036baba9ec78b154b0a5a634d 100644 --- a/last.lsp +++ b/cons/last.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Mar 28 07:37:21 1998 ;;;; Contains: Testing of CL Features related to "CONS", part 10 -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest last.1 (last nil) diff --git a/ldiff.lsp b/cons/ldiff.lsp similarity index 98% rename from ldiff.lsp rename to cons/ldiff.lsp index b031d6fe3b26940177f8c6d8c0e275ac5d687381..f9ceacea9560263e6a07995c2d1c64a9c577554d 100644 --- a/ldiff.lsp +++ b/cons/ldiff.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:46:56 2003 ;;;; Contains: Tests of LDIFF -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest ldiff.1 (let* ((x (copy-tree '(a b c d e f))) diff --git a/list-length.lsp b/cons/list-length.lsp similarity index 96% rename from list-length.lsp rename to cons/list-length.lsp index ecde7b01cc23bdd9f5e0f81c7a3a512b0b682bca..80b5e50bb6f6dd2e7afdba3ca07e43bfc55aed9a 100644 --- a/list-length.lsp +++ b/cons/list-length.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:03:01 2003 ;;;; Contains: Tests of LIST-LENGTH -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest list-length-nil (list-length nil) diff --git a/list.lsp b/cons/list.lsp similarity index 96% rename from list.lsp rename to cons/list.lsp index ee5761e4428a868773796e64fdb0afd938713172..d58a2df6845ba56c31fb2d12daaae9312b750752 100644 --- a/list.lsp +++ b/cons/list.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:56:04 2003 ;;;; Contains: Tests of LIST, LIST* -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest list.1 (list 'a 'b 'c) diff --git a/listp.lsp b/cons/listp.lsp similarity index 93% rename from listp.lsp rename to cons/listp.lsp index df099d1319f39d8ddc61ce5ae01a3385fbb6801d..e755d5d497442c0af669ffa71360c19c732327a3 100644 --- a/listp.lsp +++ b/cons/listp.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:03:37 2003 ;;;; Contains: Tests of LISTP -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest listp-nil (notnot-mv (listp nil)) diff --git a/cons/load.lsp b/cons/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..b3b496b5e2dd62df0d6bfbed20e92fcf927ed6d4 --- /dev/null +++ b/cons/load.lsp @@ -0,0 +1,85 @@ +;;; Tests of conses +(compile-and-load "ANSI-TESTS:AUX;cons-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "cons.lsp") + (load "consp.lsp") + (load "atom.lsp") + (load "cxr.lsp") + (load "rplaca.lsp") + (load "rplacd.lsp") + (load "copy-tree.lsp") + (load "sublis.lsp") + (load "nsublis.lsp") + (load "subst.lsp") + (load "subst-if.lsp") + (load "subst-if-not.lsp") + (load "nsubst.lsp") + (load "nsubst-if.lsp") + (load "nsubst-if-not.lsp") + (load "tree-equal.lsp") + (load "copy-list.lsp") + (load "list.lsp") + (load "list-length.lsp") + (load "listp.lsp") + (load "make-list.lsp") + (load "push.lsp") + (load "pop.lsp") + (load "pushnew.lsp") + (load "adjoin.lsp") + (load "nth.lsp") + (load "endp.lsp") + (load "nconc.lsp") + (load "append.lsp") + (load "revappend.lsp") + (load "nreconc.lsp") + (load "butlast.lsp") + (load "nbutlast.lsp") + (load "last.lsp") + (load "ldiff.lsp") + (load "tailp.lsp") + (load "nthcdr.lsp") + (load "rest.lsp") + (load "member.lsp") + (load "member-if.lsp") + (load "member-if-not.lsp") + + (load "mapc.lsp") + (load "mapcar.lsp") + (load "mapcan.lsp") + (load "mapl.lsp") + (load "maplist.lsp") + (load "mapcon.lsp") + + (load "acons.lsp") + (load "assoc.lsp") + (load "assoc-if.lsp") + (load "assoc-if-not.lsp") + (load "rassoc.lsp") + (load "rassoc-if.lsp") + (load "rassoc-if-not.lsp") + (load "copy-alist.lsp") + (load "pairlis.lsp") + + (load "get-properties.lsp") + (load "getf.lsp") + (load "remf.lsp") + + (load "intersection.lsp") + (load "nintersection.lsp") + (load "union.lsp") + (load "nunion.lsp") + (load "set-difference.lsp") + (load "nset-difference.lsp") + (load "set-exclusive-or.lsp") + (load "nset-exclusive-or.lsp") + (load "subsetp.lsp") + +;;; Misc. stuff that should be moved elsewhere + (load "cons-test-01.lsp") + (load "cons-test-03.lsp") + (load "cons-test-05.lsp")) diff --git a/make-list.lsp b/cons/make-list.lsp similarity index 97% rename from make-list.lsp rename to cons/make-list.lsp index f7b88b588edc1a5db517fcf61b960b6bf75f85ec..4812ac68048689822b8bfc3a743a10af42eab80b 100644 --- a/make-list.lsp +++ b/cons/make-list.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:04:27 2003 ;;;; Contains: Tests of MAKE-LIST -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest make-list-empty.1 (make-list 0) diff --git a/mapc.lsp b/cons/mapc.lsp similarity index 97% rename from mapc.lsp rename to cons/mapc.lsp index 4c9a6544f30b831dda15630e53c67bf531bfb9c4..262be668937c85542a4886e33f7ffa35c8f8142f 100644 --- a/mapc.lsp +++ b/cons/mapc.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:21:24 2003 ;;;; Contains: Tests of MAPC -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest mapc.1 (mapc #'list nil) diff --git a/mapcan.lsp b/cons/mapcan.lsp similarity index 97% rename from mapcan.lsp rename to cons/mapcan.lsp index c5b2f6e8767697ac6d8e8fcb5f09cbf8dc8d5e8a..c321748529dc7bce8aed89791fdee861563939c7 100644 --- a/mapcan.lsp +++ b/cons/mapcan.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:22:46 2003 ;;;; Contains: Tests of MAPCAN -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest mapcan.1 (mapcan #'list nil) diff --git a/mapcar.lsp b/cons/mapcar.lsp similarity index 98% rename from mapcar.lsp rename to cons/mapcar.lsp index 34bb0e9c0de390492a08447229462b007cadad76..14af63897857137d762468bedcad7a6979d4d307 100644 --- a/mapcar.lsp +++ b/cons/mapcar.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:22:16 2003 ;;;; Contains: Tests of MAPCAR -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest mapcar.1 (mapcar #'1+ nil) diff --git a/mapcon.lsp b/cons/mapcon.lsp similarity index 97% rename from mapcon.lsp rename to cons/mapcon.lsp index d61ffd3b2c5ab4476f36ce8baa0c77433759d3e5..30016903909bed95479b16292b1d030c819d575c 100644 --- a/mapcon.lsp +++ b/cons/mapcon.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:24:28 2003 ;;;; Contains: Tests of MAPCON -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest mapcon.1 (mapcon #'(lambda (x) (append '(a) x nil)) nil) diff --git a/mapl.lsp b/cons/mapl.lsp similarity index 98% rename from mapl.lsp rename to cons/mapl.lsp index 08ac582449e623c477a1875d3be0b965723f0af8..cb1f24984503192e6a455da4bcdb1ddce3a41f31 100644 --- a/mapl.lsp +++ b/cons/mapl.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:23:23 2003 ;;;; Contains: Tests of MAPL -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest mapl.1 (mapl #'list nil) diff --git a/maplist.lsp b/cons/maplist.lsp similarity index 98% rename from maplist.lsp rename to cons/maplist.lsp index 5d6c33a3f2bb8d5c6464795e08b631088ca99497..5a2d58927d45d6f3fdb8e0ad650ed161515ceceb 100644 --- a/maplist.lsp +++ b/cons/maplist.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:24:00 2003 ;;;; Contains: Tests of MAPLIST -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest maplist.1 (maplist #'list nil) diff --git a/member-if-not.lsp b/cons/member-if-not.lsp similarity index 98% rename from member-if-not.lsp rename to cons/member-if-not.lsp index 69ee39a146904f948d9cf52a900621dee9cb30c7..ee4e8ca73977ca5e5de24270d594cec8c143bf8e 100644 --- a/member-if-not.lsp +++ b/cons/member-if-not.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Mar 28 07:39:29 1998 ;;;; Contains: Tests of MEMBER-IF-NOT -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest member-if-not.1 (member-if-not #'listp nil) diff --git a/member-if.lsp b/cons/member-if.lsp similarity index 98% rename from member-if.lsp rename to cons/member-if.lsp index 6811179481dd5bba5ac7b01bff21d3731d78dafe..2c21363163e776ad0a4c6e51d4ef6bcc0e03b139 100644 --- a/member-if.lsp +++ b/cons/member-if.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:51:56 2003 ;;;; Contains: Tests of MEMBER-IF -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest member-if.1 (member-if #'listp nil) diff --git a/member.lsp b/cons/member.lsp similarity index 99% rename from member.lsp rename to cons/member.lsp index 826db8e3b0433752ebd63cae55f59e2ae3058b13..7aaaa8c0d906ab75cbf0d9310fbbd4847560dd24 100644 --- a/member.lsp +++ b/cons/member.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Mar 28 07:38:57 1998 ;;;; Contains: Tests of MEMBER -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest member.1 (let* ((x (copy-tree '(a b c d e f))) diff --git a/nbutlast.lsp b/cons/nbutlast.lsp similarity index 97% rename from nbutlast.lsp rename to cons/nbutlast.lsp index db433823cf56527fdefca5d7cb0b33c22804534b..ceaddb4959594a8fa76c9f0f2c30381a32601c9c 100644 --- a/nbutlast.lsp +++ b/cons/nbutlast.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:41:54 2003 ;;;; Contains: Tests of NBUTLAST -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest nbutlast.1 (let ((x (list 'a 'b 'c 'd 'e))) diff --git a/nconc.lsp b/cons/nconc.lsp similarity index 96% rename from nconc.lsp rename to cons/nconc.lsp index c660ca2327d722191283cfb4b54cf002ed8e2f57..187a26b18d75bedcb3cc49d58bd74ee270bbf87a 100644 --- a/nconc.lsp +++ b/cons/nconc.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:35:53 2003 ;;;; Contains: Tests of NCONC -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest nconc.1 (nconc) diff --git a/nintersection.lsp b/cons/nintersection.lsp similarity index 99% rename from nintersection.lsp rename to cons/nintersection.lsp index 13d23b0d188d5730d68045bc8ad6885f0ac1ff56..6cc8d93f6027f41428a6f11b509810347ef2bfee 100644 --- a/nintersection.lsp +++ b/cons/nintersection.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:40:02 2003 ;;;; Contains: Tests of NINTERSECTION -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest nintersection.1 (nintersection nil nil) diff --git a/nreconc.lsp b/cons/nreconc.lsp similarity index 94% rename from nreconc.lsp rename to cons/nreconc.lsp index 3ebf2789f2fa1ffe636ab6322a74a1f6274087a0..2f99868d957c91e2b7db66c5a6a1d27d00f7010e 100644 --- a/nreconc.lsp +++ b/cons/nreconc.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:38:12 2003 ;;;; Contains: Tests of NRECONC -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest nreconc.1 (let* ((x (list 'a 'b 'c)) diff --git a/nset-difference.lsp b/cons/nset-difference.lsp similarity index 99% rename from nset-difference.lsp rename to cons/nset-difference.lsp index 2e1a74a804ae37f8b0cfcae9ff69e1a11256c57d..0cabd8069d52eea36bb0a8536198c426b386e77a 100644 --- a/nset-difference.lsp +++ b/cons/nset-difference.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:44:44 2003 ;;;; Contains: Tests of NSET-DIFFERENCE -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest nset-difference.1 (nset-difference nil nil) diff --git a/nset-exclusive-or.lsp b/cons/nset-exclusive-or.lsp similarity index 99% rename from nset-exclusive-or.lsp rename to cons/nset-exclusive-or.lsp index dcb40b7920156718b943d8e9327c4b03159b35ca..2cbc031afa7171120e491996ee1b555856fba479 100644 --- a/nset-exclusive-or.lsp +++ b/cons/nset-exclusive-or.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:47:05 2003 ;;;; Contains: Tests of NSET-EXCLUSIVE-OR -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest nset-exclusive-or.1 (nset-exclusive-or nil nil) diff --git a/nsublis.lsp b/cons/nsublis.lsp similarity index 98% rename from nsublis.lsp rename to cons/nsublis.lsp index a33a5d598a0022cb8742f18a12b9a6cb2eff76c1..6b1c9764c01b20949b8048ea657ec37955714035 100644 --- a/nsublis.lsp +++ b/cons/nsublis.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:35:33 2003 ;;;; Contains: Tests of NSUBLIS -(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) diff --git a/nsubst-if-not.lsp b/cons/nsubst-if-not.lsp similarity index 98% rename from nsubst-if-not.lsp rename to cons/nsubst-if-not.lsp index ba7131df03d361487f559e93a743dfb47268b5c5..2b010c838f95b695f2807d578903891a425e9a19 100644 --- a/nsubst-if-not.lsp +++ b/cons/nsubst-if-not.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:54:12 2003 ;;;; Contains: Tests of NSUBST-IF-NOT -(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))) diff --git a/nsubst-if.lsp b/cons/nsubst-if.lsp similarity index 98% rename from nsubst-if.lsp rename to cons/nsubst-if.lsp index ea88373a3fdb42c8e84a944942142ed09f8ce868..d6e6ec41104217fcff5a144c85185db8e7df2062 100644 --- a/nsubst-if.lsp +++ b/cons/nsubst-if.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:51:41 2003 ;;;; Contains: Tests of NSUBST-IF -(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))) diff --git a/nsubst.lsp b/cons/nsubst.lsp similarity index 98% rename from nsubst.lsp rename to cons/nsubst.lsp index e97863d92767b819c727bed0ec9bb3dd42a2b8fb..b762db664afd60d09ef301999003271fb61f56e2 100644 --- a/nsubst.lsp +++ b/cons/nsubst.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:49:58 2003 ;;;; Contains: Tests of NSUBST -(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/nth.lsp b/cons/nth.lsp similarity index 95% rename from nth.lsp rename to cons/nth.lsp index 333751e88ad425129d00b010e417d7f31dc20838..8b756014b771562c43133870cc9b337135be0d52 100644 --- a/nth.lsp +++ b/cons/nth.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:33:23 2003 ;;;; Contains: Tests of NTH -(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))) diff --git a/nthcdr.lsp b/cons/nthcdr.lsp similarity index 95% rename from nthcdr.lsp rename to cons/nthcdr.lsp index 36e681510ce1a3668709e11e1346ab21b3bffa93..52221f156705e7052690bdc59bee2803b4133b4a 100644 --- a/nthcdr.lsp +++ b/cons/nthcdr.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:48:36 2003 ;;;; Contains: Tests of NTHCDR -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + ;;; Error tests diff --git a/nunion.lsp b/cons/nunion.lsp similarity index 99% rename from nunion.lsp rename to cons/nunion.lsp index 4a9974e5db039f837ca1ec79a542feb9319a2b8e..f89812ae9da046b755e7266aa9433733d6b51ca4 100644 --- a/nunion.lsp +++ b/cons/nunion.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:42:35 2003 ;;;; Contains: Tests of NUNION -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest nunion.1 (nunion nil nil) diff --git a/pairlis.lsp b/cons/pairlis.lsp similarity index 97% rename from pairlis.lsp rename to cons/pairlis.lsp index d9625e578983c918fc99e472b71e3272ba10999c..86c44242528b15e646e45890ea38d09543cbc56d 100644 --- a/pairlis.lsp +++ b/cons/pairlis.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:30:55 2003 ;;;; Contains: Tests of PAIRLIS -(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 diff --git a/pop.lsp b/cons/pop.lsp similarity index 94% rename from pop.lsp rename to cons/pop.lsp index 3d225b0db2f8c8c609cfdbfebd9956a502f71f25..575149730ca7399c945cf74da7a0eb87e007d2dc 100644 --- a/pop.lsp +++ b/cons/pop.lsp @@ -3,9 +3,9 @@ ;;;; 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)))) diff --git a/push.lsp b/cons/push.lsp similarity index 96% rename from push.lsp rename to cons/push.lsp index e1d97bddc2ce3684dcdde5916e6730da579bb8e7..1ec98f99090835cebb280fae5233ed0409324c4e 100644 --- a/push.lsp +++ b/cons/push.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:05:34 2003 ;;;; Contains: Tests of PUSH -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + ;;; See also places.lsp diff --git a/pushnew.lsp b/cons/pushnew.lsp similarity index 99% rename from pushnew.lsp rename to cons/pushnew.lsp index e3faa9909a1d8f538eff3e2a797b82ff1e9105a0..57d0030a8697bab00af5887fc4ba925b101907a2 100644 --- a/pushnew.lsp +++ b/cons/pushnew.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:28:35 2003 ;;;; Contains: Tests of PUSHNEW -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest pushnew.1 (let ((x nil)) diff --git a/rassoc-if-not.lsp b/cons/rassoc-if-not.lsp similarity index 98% rename from rassoc-if-not.lsp rename to cons/rassoc-if-not.lsp index 8726637529a3e00c353f2f2e42445906a90d2665..cef3097606677ff513746035c812b734c1e76cff 100644 --- a/rassoc-if-not.lsp +++ b/cons/rassoc-if-not.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:35:27 2003 ;;;; Contains: Tests of RASSOC-IF-NOT -(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/rassoc-if.lsp b/cons/rassoc-if.lsp similarity index 98% rename from rassoc-if.lsp rename to cons/rassoc-if.lsp index 9a854ee2587d80e42282b29143c7724233aa2a5c..240fa5202be62cee38d8eb4c5a47b5fc4d72de19 100644 --- a/rassoc-if.lsp +++ b/cons/rassoc-if.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:34:59 2003 ;;;; Contains: Tests of RASSOC-IF -(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)))) diff --git a/rassoc.lsp b/cons/rassoc.lsp similarity index 99% rename from rassoc.lsp rename to cons/rassoc.lsp index 9b06641498ad2765ddaa52ff25353dcc3d08a14d..641034191e89e4c398d98bde5724cf70032bdd70 100644 --- a/rassoc.lsp +++ b/cons/rassoc.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:33:49 2003 ;;;; Contains: Tests of RASSOC -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest rassoc.1 (rassoc nil nil) diff --git a/remf.lsp b/cons/remf.lsp similarity index 97% rename from remf.lsp rename to cons/remf.lsp index 5b8dc45042fdbac36adae94e4148ab12392b8f17..fab804f9ffe61a7f829842d416c37fb79d7d9b84 100644 --- a/remf.lsp +++ b/cons/remf.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:38:18 2003 ;;;; Contains: Tests of REMF -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest remf.1 (let ((x nil)) diff --git a/rest.lsp b/cons/rest.lsp similarity index 87% rename from rest.lsp rename to cons/rest.lsp index 6fb9f5ec3a29b26b8004978a4d1417f847e04f16..ef16a8a150171f409cfc24d250f0a265103e4d99 100644 --- a/rest.lsp +++ b/cons/rest.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:49:14 2003 ;;;; Contains: Tests of REST -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest rest.1 (rest (list 'a 'b 'c)) diff --git a/revappend.lsp b/cons/revappend.lsp similarity index 96% rename from revappend.lsp rename to cons/revappend.lsp index 028059fb860e5ecc519c48863ec1af5d505c4981..2142f55b5c3e8411296a9df95dee08b4f42b198a 100644 --- a/revappend.lsp +++ b/cons/revappend.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:37:43 2003 ;;;; Contains: Tests of REVAPPEND -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest revappend.1 (let* ((x (list 'a 'b 'c)) diff --git a/rplaca.lsp b/cons/rplaca.lsp similarity index 94% rename from rplaca.lsp rename to cons/rplaca.lsp index 195bb6ef9c16165a1ddbdc6508912453f670fca7..4ef8a9e648bf46b27e94a2ba88a6187f0872e94b 100644 --- a/rplaca.lsp +++ b/cons/rplaca.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:29:43 2003 ;;;; Contains: Tests of RPLACA -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest rplaca.1 (let ((x (cons 'a 'b))) diff --git a/rplacd.lsp b/cons/rplacd.lsp similarity index 94% rename from rplacd.lsp rename to cons/rplacd.lsp index 6dd3e4381692bdfaee2fd0b669dacbea344538fd..76b77600484490127fa0fdc0ce4f6f2e2507fb18 100644 --- a/rplacd.lsp +++ b/cons/rplacd.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:30:28 2003 ;;;; Contains: Tests of RPLACD -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest rplacd.1 (let ((x (cons 'a 'b))) diff --git a/set-difference.lsp b/cons/set-difference.lsp similarity index 99% rename from set-difference.lsp rename to cons/set-difference.lsp index 9216417ebcccab3a155ca31a222e2cb4444c5913..569863ef0bfd8ed7a4b6d41cef8d968d11fdb9bf 100644 --- a/set-difference.lsp +++ b/cons/set-difference.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:44:06 2003 ;;;; Contains: Tests of SET-DIFFERENCE -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest set-difference.1 (set-difference nil nil) diff --git a/set-exclusive-or.lsp b/cons/set-exclusive-or.lsp similarity index 99% rename from set-exclusive-or.lsp rename to cons/set-exclusive-or.lsp index fa508d5cb28d4280b635562292868044c8ca4c87..dde380f3f4be793a9dd795510bf25e35096f005d 100644 --- a/set-exclusive-or.lsp +++ b/cons/set-exclusive-or.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:45:46 2003 ;;;; Contains: Tests of SET-EXCLUSIVE-OR -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest set-exclusive-or.1 (set-exclusive-or nil nil) diff --git a/sublis.lsp b/cons/sublis.lsp similarity index 98% rename from sublis.lsp rename to cons/sublis.lsp index 84a66623b8a0fc44a38f562ca33ece68417b5ab8..426203effbffb2ad50f3cc8853d716bb8ee58fdd 100644 --- a/sublis.lsp +++ b/cons/sublis.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:32:50 2003 ;;;; Contains: Tests of SUBLIS -(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) diff --git a/subsetp.lsp b/cons/subsetp.lsp similarity index 99% rename from subsetp.lsp rename to cons/subsetp.lsp index 196f124fecb0c4d679662f645549f3f19e6e6772..b1e5a3239d027b1497f786f980df4d5439184e55 100644 --- a/subsetp.lsp +++ b/cons/subsetp.lsp @@ -3,9 +3,9 @@ ;;;; Created: Wed Apr 1 22:10:54 1998 ;;;; Contains: Tests of SUBSETP -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (defvar cons-test-24-var '(78 "z" (8 9))) diff --git a/subst-if-not.lsp b/cons/subst-if-not.lsp similarity index 98% rename from subst-if-not.lsp rename to cons/subst-if-not.lsp index e95b0b9ae713b88795551c72358321fb49e8710f..8cf5fdd24a3d1f9fd82098f97df49712bf3a135a 100644 --- a/subst-if-not.lsp +++ b/cons/subst-if-not.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:48:22 2003 ;;;; Contains: Tests of SUBST-IF-NOT -(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))) diff --git a/subst-if.lsp b/cons/subst-if.lsp similarity index 98% rename from subst-if.lsp rename to cons/subst-if.lsp index 7a3493de89465f115be8ff8bfb5d97638a365644..33168058b298fa196df273ee616953f523198cca 100644 --- a/subst-if.lsp +++ b/cons/subst-if.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:39:42 2003 ;;;; Contains: Tests of SUBST-IF -(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))) diff --git a/subst.lsp b/cons/subst.lsp similarity index 98% rename from subst.lsp rename to cons/subst.lsp index 5ca4e0807003afcd0c51b365891abfab9887d0ef..03d13225e7853b6dff02d41654b34da3592eea71 100644 --- a/subst.lsp +++ b/cons/subst.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 21:37:56 2003 ;;;; Contains: Tests of SUBST -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (defvar *subst-tree-1* '(10 (30 20 10) (20 10) (10 20 30 40))) diff --git a/tailp.lsp b/cons/tailp.lsp similarity index 97% rename from tailp.lsp rename to cons/tailp.lsp index f21bc77d31c711d796acc6d0796d876fa7b2a093..1b4b4c5e6a6e285f8892a3b716597002593458c7 100644 --- a/tailp.lsp +++ b/cons/tailp.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 19 22:47:26 2003 ;;;; Contains: Tests of TAILP -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest tailp.1 (let ((x (copy-tree '(a b c d e . f)))) diff --git a/tree-equal.lsp b/cons/tree-equal.lsp similarity index 98% rename from tree-equal.lsp rename to cons/tree-equal.lsp index deddb61ec3c7a8f5a58e5751eab85c98b470e148..469ebabfee5e02c14e01832e46ee408149a54419 100644 --- a/tree-equal.lsp +++ b/cons/tree-equal.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Jun 14 07:23:03 2003 ;;;; Contains: Tests of TREE-EQUAL -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest tree-equal.1 (notnot-mv (tree-equal 'a 'a)) diff --git a/union.lsp b/cons/union.lsp similarity index 99% rename from union.lsp rename to cons/union.lsp index 400793cf97823167876fee035bd277598999dc9c..04b7d8167bd52d1ec52c09e8df000ffb827290f2 100644 --- a/union.lsp +++ b/cons/union.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Apr 20 07:41:24 2003 ;;;; Contains: Tests of UNION -(in-package :cl-test) -(compile-and-load "cons-aux.lsp") + + (deftest union.1 (union nil nil) diff --git a/and.lsp b/data-and-control-flow/and.lsp similarity index 98% rename from and.lsp rename to data-and-control-flow/and.lsp index 3046d09b29a0de854fb00316b2eace3b5d90cfbf..304f18aac270ddfe7b33b6a04870dcf91c651347 100644 --- a/and.lsp +++ b/data-and-control-flow/and.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 07:23:48 2002 ;;;; Contains: Tests for AND -(in-package :cl-test) + (deftest and.1 (and) diff --git a/apply.lsp b/data-and-control-flow/apply.lsp similarity index 98% rename from apply.lsp rename to data-and-control-flow/apply.lsp index ca004dfc25b2b5058b327db98d09d2d6adc0b40a..662292507ba5ad311983f90d920c2a61d7b1269b 100644 --- a/apply.lsp +++ b/data-and-control-flow/apply.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jan 13 15:13:07 2003 ;;;; Contains: Tests of APPLY -(in-package :cl-test) + ;;; Error cases diff --git a/block.lsp b/data-and-control-flow/block.lsp similarity index 98% rename from block.lsp rename to data-and-control-flow/block.lsp index 2b41460c373524efa69731bea44d395bf58ae47e..fa802f96744b8c69603d3e179fc4de184aa94dcd 100644 --- a/block.lsp +++ b/data-and-control-flow/block.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 12 12:30:46 2002 ;;;; Contains: Tests of BLOCK -(in-package :cl-test) + (deftest block.1 (block foo diff --git a/call-arguments-limit.lsp b/data-and-control-flow/call-arguments-limit.lsp similarity index 96% rename from call-arguments-limit.lsp rename to data-and-control-flow/call-arguments-limit.lsp index ac178951a3bc0fa31ae11ebf5a61d32f4b0083e1..1c27e125885c813f5b13c7069beae3c11f1b4cec 100644 --- a/call-arguments-limit.lsp +++ b/data-and-control-flow/call-arguments-limit.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 10 22:39:25 2002 ;;;; Contains: Tests for CALL-ARGUMENTS-LIMIT -(in-package :cl-test) + (deftest call-arguments-limit.1 (notnot-mv (constantp 'call-arguments-limit)) diff --git a/case.lsp b/data-and-control-flow/case.lsp similarity index 99% rename from case.lsp rename to data-and-control-flow/case.lsp index 3238d003bbb9d0c690e76f9f29bf7c885eb37712..8ead5703708ef839555025e40e4a90f8674f58df 100644 --- a/case.lsp +++ b/data-and-control-flow/case.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 19:56:44 2002 ;;;; Contains: Tests of CASE -(in-package :cl-test) + (deftest case.1 (case 'a) diff --git a/catch.lsp b/data-and-control-flow/catch.lsp similarity index 98% rename from catch.lsp rename to data-and-control-flow/catch.lsp index a98931dcc0015218bc8158134a7fb8a184a6e1a5..bd7d43569197e84d9b7ea3053eedda4cf7c9d487 100644 --- a/catch.lsp +++ b/data-and-control-flow/catch.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 12 13:04:02 2002 ;;;; Contains: Tests of CATCH and THROW -(in-package :cl-test) + (deftest catch.1 (catch 'foo) diff --git a/ccase.lsp b/data-and-control-flow/ccase.lsp similarity index 99% rename from ccase.lsp rename to data-and-control-flow/ccase.lsp index 0ef08422b6189966ec09e75783355f81d8c9474f..25914b9edcb5f26c7c9d4f164f148de8a5ef260f 100644 --- a/ccase.lsp +++ b/data-and-control-flow/ccase.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 21:06:45 2002 ;;;; Contains: Tests of CCASE -(in-package :cl-test) + (deftest ccase.1 (let ((x 'b)) diff --git a/compiled-function-p.lsp b/data-and-control-flow/compiled-function-p.lsp similarity index 97% rename from compiled-function-p.lsp rename to data-and-control-flow/compiled-function-p.lsp index d98489fdd9b89aa987920c709636c18460638044..e6ac92bd92906af078ae6e9069fbad3e1a3bca44 100644 --- a/compiled-function-p.lsp +++ b/data-and-control-flow/compiled-function-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jan 13 16:32:44 2003 ;;;; Contains: Tests of COMPILED-FUNCTION-P -(in-package :cl-test) + (deftest compiled-function-p.1 (check-type-predicate #'compiled-function-p 'compiled-function) diff --git a/complement.lsp b/data-and-control-flow/complement.lsp similarity index 99% rename from complement.lsp rename to data-and-control-flow/complement.lsp index b442d47a75b9d56ddedc3106f3cd602d11a31a95..b37de56b221d66008698a3dd7e6b2027977653ae 100644 --- a/complement.lsp +++ b/data-and-control-flow/complement.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Oct 6 20:04:33 2002 ;;;; Contains: Tests for COMPLEMENT -(in-package :cl-test) + (deftest complement.1 (notnot-mv (funcall (complement #'identity) nil)) diff --git a/cond.lsp b/data-and-control-flow/cond.lsp similarity index 98% rename from cond.lsp rename to data-and-control-flow/cond.lsp index 1eaabefed83aab29b88a18da3a0f3c03235909fb..d5832105a184f5b900d811dfb734c2a7033d8618 100644 --- a/cond.lsp +++ b/data-and-control-flow/cond.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 07:37:58 2002 ;;;; Contains: Tests of COND -(in-package :cl-test) + (deftest cond.1 (cond) diff --git a/constantly.lsp b/data-and-control-flow/constantly.lsp similarity index 97% rename from constantly.lsp rename to data-and-control-flow/constantly.lsp index 55dce3abc6f96981dd0bac65de8f23098a7e0ea5..02e5d680484b43d28fe4c5862b43a743190abab7 100644 --- a/constantly.lsp +++ b/data-and-control-flow/constantly.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Oct 6 19:47:16 2002 ;;;; Contains: Tests for CONSTANTLY -(in-package :cl-test) + (deftest constantly.1 (let ((fn (cl:constantly 10)) diff --git a/ctypecase.lsp b/data-and-control-flow/ctypecase.lsp similarity index 99% rename from ctypecase.lsp rename to data-and-control-flow/ctypecase.lsp index 15404adb6e514562097713ad0bba28ef03d934a0..08dbe9589e4c19251fe72e11eec1711a45acf371 100644 --- a/ctypecase.lsp +++ b/data-and-control-flow/ctypecase.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 23:05:10 2002 ;;;; Contains: Tests of CTYPECASE -(in-package :cl-test) + (deftest ctypecase.1 (let ((x 1)) diff --git a/data-and-control-flow.lsp b/data-and-control-flow/data-and-control-flow.lsp similarity index 97% rename from data-and-control-flow.lsp rename to data-and-control-flow/data-and-control-flow.lsp index adcd4290c21787bb06dd98110b5b14dac836c557..550703ea2e5182620b675c99ba558958208655c1 100644 --- a/data-and-control-flow.lsp +++ b/data-and-control-flow/data-and-control-flow.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Oct 21 22:21:48 2002 ;;;; Contains: Overall tests for section 5 of spec, "Data and Control Flow" -(in-package :cl-test) + ;;; Functions from section 5 (defparameter *dcf-fns* diff --git a/defconstant.lsp b/data-and-control-flow/defconstant.lsp similarity index 98% rename from defconstant.lsp rename to data-and-control-flow/defconstant.lsp index 9e3a08ac42c5fcbc62cefff1ea0ede3c64d24b5f..1402b19b50c499298d4eea062f1f5b0ade6d64ba 100644 --- a/defconstant.lsp +++ b/data-and-control-flow/defconstant.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 10 23:05:39 2002 ;;;; Contains: Tests of DEFCONSTANT -(in-package :cl-test) + (defconstant test-constant-1 17) diff --git a/define-modify-macro.lsp b/data-and-control-flow/define-modify-macro.lsp similarity index 99% rename from define-modify-macro.lsp rename to data-and-control-flow/define-modify-macro.lsp index 606fda141088c637d7fc15ef531428d4b95bf9db..27b3a898604ca99eb84036d8cb1c317abe7b8e8c 100644 --- a/define-modify-macro.lsp +++ b/data-and-control-flow/define-modify-macro.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 19 11:42:14 2002 ;;;; Contains: Tests of DEFINE-MODIFY-MACRO -(in-package :cl-test) + (deftest define-modify-macro.1 (values diff --git a/define-setf-expander.lsp b/data-and-control-flow/define-setf-expander.lsp similarity index 99% rename from define-setf-expander.lsp rename to data-and-control-flow/define-setf-expander.lsp index 6552ecfbc589ab20bff34da9ab10a1115aa72577..94a595ecea5d02694e1a86bbc94172a2d697293e 100644 --- a/define-setf-expander.lsp +++ b/data-and-control-flow/define-setf-expander.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 17:19:35 2003 ;;;; Contains: Tests of DEFINE-SETF-EXPANDER -(in-package :cl-test) + (def-macro-test define-setf-expander.error.1 (define-setf-expander nonexistent-access-fn (x))) diff --git a/defparameter.lsp b/data-and-control-flow/defparameter.lsp similarity index 99% rename from defparameter.lsp rename to data-and-control-flow/defparameter.lsp index 729f3a6bb80f5b51cd484db94f93aae5416b08ce..bfdf4b4f260e7d8a9d7ef1a38c3fc26b615bb8fb 100644 --- a/defparameter.lsp +++ b/data-and-control-flow/defparameter.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 10 23:13:22 2002 ;;;; Contains: Tests of DEFPARAMETER -(in-package :cl-test) + (defparameter *defparameter-test-var-1* 100) diff --git a/defsetf.lsp b/data-and-control-flow/defsetf.lsp similarity index 99% rename from defsetf.lsp rename to data-and-control-flow/defsetf.lsp index 6d865c9b8de0a893dc9cdfb929b79e1358da7754..89d5c58ecf1940e700baa1ff26a8175ec378981b 100644 --- a/defsetf.lsp +++ b/data-and-control-flow/defsetf.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 17:18:01 2003 ;;;; Contains: Tests of DEFSETF -(in-package :cl-test) + ;;; Need to add non-error tests diff --git a/defun.lsp b/data-and-control-flow/defun.lsp similarity index 99% rename from defun.lsp rename to data-and-control-flow/defun.lsp index 794fca0f746eb559a08d8826d91d1cd0aa6a82ab..64801ef12c1bd04569b25de834d8c56a63c31dd5 100644 --- a/defun.lsp +++ b/data-and-control-flow/defun.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 16 23:40:32 2003 ;;;; Contains: Tests of DEFUN -(in-package :cl-test) + ;;; Tests for implicit blocks diff --git a/defvar.lsp b/data-and-control-flow/defvar.lsp similarity index 98% rename from defvar.lsp rename to data-and-control-flow/defvar.lsp index de2beca2396a6d6a6078ad00d78310803b3d3889..da07fbe43b2b96e1717a6905a745e5d4483ec5f0 100644 --- a/defvar.lsp +++ b/data-and-control-flow/defvar.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 10 23:21:50 2002 ;;;; Contains: Tests for DEFVAR -(in-package :cl-test) + (defvar *defvar-test-var-1* 100) diff --git a/destructuring-bind.lsp b/data-and-control-flow/destructuring-bind.lsp similarity index 99% rename from destructuring-bind.lsp rename to data-and-control-flow/destructuring-bind.lsp index 609726363eba0c2d5151bc97cf2c2a1daca57c5d..63aca788b835ee5eef7a06d8308424c245195f76 100644 --- a/destructuring-bind.lsp +++ b/data-and-control-flow/destructuring-bind.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 10 23:25:50 2002 ;;;; Contains: Tests for DESTRUCTURING-BIND -(in-package :cl-test) + ;;; See the page for this in section 5.3 ;;; Also, see destructuring lambda lists in section 3.4.5 diff --git a/ecase.lsp b/data-and-control-flow/ecase.lsp similarity index 99% rename from ecase.lsp rename to data-and-control-flow/ecase.lsp index 8b7ed260f155aadc13543cd5aa1cebeba11e4271..c42adf04a9a0954078ad3a85b1ffa4a02f13f8e8 100644 --- a/ecase.lsp +++ b/data-and-control-flow/ecase.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 20:17:30 2002 ;;;; Contains: Tests for ECASE -(in-package :cl-test) + (deftest ecase.1 (ecase 'b (a 1) (b 2) (c 3)) diff --git a/eql.lsp b/data-and-control-flow/eql.lsp similarity index 98% rename from eql.lsp rename to data-and-control-flow/eql.lsp index 2f7f529f9bc8bc6e628ee279e8740b9490061cb3..d0716e0438cb7cea4137a8542c2cab2814d7aad0 100644 --- a/eql.lsp +++ b/data-and-control-flow/eql.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 17 19:36:33 2002 ;;;; Contains: Tests of EQL -(in-package :cl-test) + ;;; EQLT is defined in ansi-aux.lsp ;;; It calls EQL, returning NIL when the result is false and T when it diff --git a/equal.lsp b/data-and-control-flow/equal.lsp similarity index 99% rename from equal.lsp rename to data-and-control-flow/equal.lsp index 4d8bf8a1496584f70911f17ad6ec7323591d0090..aa70e86e326b53f521a2224215f7b7d89fbd4151 100644 --- a/equal.lsp +++ b/data-and-control-flow/equal.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 17 21:38:16 2002 ;;;; Contains: Tests for EQUAL -(in-package :cl-test) + (deftest equal.1 (loop for x in *symbols* diff --git a/equalp.lsp b/data-and-control-flow/equalp.lsp similarity index 99% rename from equalp.lsp rename to data-and-control-flow/equalp.lsp index 4dc775966a564eb3ad07b252346895bb4b693953..de1bad0d7617dfd675d7d1473f3a3f14136dcdea 100644 --- a/equalp.lsp +++ b/data-and-control-flow/equalp.lsp @@ -3,9 +3,7 @@ ;;;; Created: Thu Oct 17 22:14:42 2002 ;;;; Contains: Tests for EQUALP -(in-package :cl-test) -(compile-and-load "random-aux.lsp") (deftest equalp.1 (loop for c across +base-chars+ diff --git a/etypecase.lsp b/data-and-control-flow/etypecase.lsp similarity index 98% rename from etypecase.lsp rename to data-and-control-flow/etypecase.lsp index ceef833b3225ae4ce31fb64986363466aceec500..746c43e9a4bbec3e283269ffac7ab2f68658f7e0 100644 --- a/etypecase.lsp +++ b/data-and-control-flow/etypecase.lsp @@ -3,9 +3,7 @@ ;;;; Created: Fri Oct 18 23:02:23 2002 ;;;; Contains: Tests of ETYPECASE -(in-package :cl-test) -(compile-and-load "types-aux.lsp") (deftest etypecase.1 (etypecase 1 (integer 'a) (t 'b)) diff --git a/every.lsp b/data-and-control-flow/every.lsp similarity index 99% rename from every.lsp rename to data-and-control-flow/every.lsp index 93e9567bcae093cb98b67f06659227b479d55671..b23ada421097152317fd930b15d4238e79bb2775 100644 --- a/every.lsp +++ b/data-and-control-flow/every.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 17 23:25:58 2002 ;;;; Contains: Tests of EVERY -(in-package :cl-test) + (deftest every.1 (notnot-mv (every #'identity nil)) diff --git a/fboundp.lsp b/data-and-control-flow/fboundp.lsp similarity index 98% rename from fboundp.lsp rename to data-and-control-flow/fboundp.lsp index 2a7f84eff41b4fbdd369a1c5425e2a3a6afbe66a..dfe6b9e48affea4bda9cd34d96f63e37c9840ab9 100644 --- a/fboundp.lsp +++ b/data-and-control-flow/fboundp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Oct 7 22:37:22 2002 ;;;; Contains: Tests of FBOUNDP -(in-package :cl-test) + (deftest fboundp.1 (not-mv (fboundp 'car)) diff --git a/fdefinition.lsp b/data-and-control-flow/fdefinition.lsp similarity index 99% rename from fdefinition.lsp rename to data-and-control-flow/fdefinition.lsp index 3796bbda4ec83bebce6387705fb67fa1a58e8962..67538ac18798947233cfad456c6f98da2d518e7a 100644 --- a/fdefinition.lsp +++ b/data-and-control-flow/fdefinition.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jan 13 15:27:51 2003 ;;;; Contains: Tests for FDEFINITION -(in-package :cl-test) + ;;; Error cases diff --git a/flet.lsp b/data-and-control-flow/flet.lsp similarity index 99% rename from flet.lsp rename to data-and-control-flow/flet.lsp index 077b8a18ab637dc57593acfc2fc7c1bd44ce63f7..f4e0912042177640068fa1ef7795fca53ae9879e 100644 --- a/flet.lsp +++ b/data-and-control-flow/flet.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Oct 8 22:55:02 2002 ;;;; Contains: Tests of FLET -(in-package :cl-test) + (deftest flet.1 (flet ((%f () 1)) diff --git a/fmakunbound.lsp b/data-and-control-flow/fmakunbound.lsp similarity index 98% rename from fmakunbound.lsp rename to data-and-control-flow/fmakunbound.lsp index 0385032c394fef4ad09c2392da5c83c3bd06cc5f..213de5c9ed50ef24a251ea6c7e781944fdc10cec 100644 --- a/fmakunbound.lsp +++ b/data-and-control-flow/fmakunbound.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Oct 8 00:09:14 2002 ;;;; Contains: Tests for FMAKUNBOUND -(in-package :cl-test) + (deftest fmakunbound.1 (let ((g (gensym))) diff --git a/funcall.lsp b/data-and-control-flow/funcall.lsp similarity index 99% rename from funcall.lsp rename to data-and-control-flow/funcall.lsp index c253b4477c12ded76588ee18b5567d195616bd33..6ded38ddc0bd4fe5858aba2e530b8fd956b3c670 100644 --- a/funcall.lsp +++ b/data-and-control-flow/funcall.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Oct 9 21:45:07 2002 ;;;; Contains: Tests of FUNCALL -(in-package :cl-test) + (deftest funcall.1 (let ((fn #'cons)) diff --git a/function-lambda-expression.lsp b/data-and-control-flow/function-lambda-expression.lsp similarity index 98% rename from function-lambda-expression.lsp rename to data-and-control-flow/function-lambda-expression.lsp index 137d13434588b5433b1146152c06f83c52d8363c..6a28294010e574ef74735678317b67b606b8213e 100644 --- a/function-lambda-expression.lsp +++ b/data-and-control-flow/function-lambda-expression.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jan 13 16:27:12 2003 ;;;; Contains: Tests for FUNCTION-LAMBDA-EXPRESSION -(in-package :cl-test) + (deftest function-lambda-expression.1 (length diff --git a/function.lsp b/data-and-control-flow/function.lsp similarity index 99% rename from function.lsp rename to data-and-control-flow/function.lsp index 6d70881cc937506fa9ce9194bf502f5a223c765a..d042875199877dd431c510893ec81503c5f3fb59 100644 --- a/function.lsp +++ b/data-and-control-flow/function.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Oct 7 07:34:29 2002 ;;;; Contains: Tests for type FUNCTION and the special form FUNCTION -(in-package :cl-test) + ;;; ;;; Note! There are significant incompatibilities between CLTL1 and ANSI CL diff --git a/functionp.lsp b/data-and-control-flow/functionp.lsp similarity index 99% rename from functionp.lsp rename to data-and-control-flow/functionp.lsp index 81d14408ad9743413548c0b106cd6025cf786310..dac567966235b3b685f09637c6b1d2668e663108 100644 --- a/functionp.lsp +++ b/data-and-control-flow/functionp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Oct 7 06:39:21 2002 ;;;; Contains: Tests for FUNCTIONP -(in-package :cl-test) + ;;; ;;; Note! FUNCTIONP and FUNCTION behave differently in ANSI CL than diff --git a/get-setf-expansion.lsp b/data-and-control-flow/get-setf-expansion.lsp similarity index 98% rename from get-setf-expansion.lsp rename to data-and-control-flow/get-setf-expansion.lsp index e2b67354bd1d52d9ad2e34b7154127d484cce144..36d0c89f53ce099c05130c130891aa7164884a56 100644 --- a/get-setf-expansion.lsp +++ b/data-and-control-flow/get-setf-expansion.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jan 13 17:05:17 2003 ;;;; Contains: Tests for GET-SETF-EXPANSION -(in-package :cl-test) + (deftest get-setf-expansion.error.1 (signals-error (get-setf-expansion) program-error) diff --git a/identity.lsp b/data-and-control-flow/identity.lsp similarity index 96% rename from identity.lsp rename to data-and-control-flow/identity.lsp index 02fb021c4178b9dad1e19a755cd22cd287edc1f7..81a4816ee8e1356d17942393b63143204b6ec843 100644 --- a/identity.lsp +++ b/data-and-control-flow/identity.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 17 23:21:11 2002 ;;;; Contains: Tests for IDENTITY -(in-package :cl-test) + (deftest identity.1 (check-predicate #'(lambda (x) (eqlt x (check-values (identity x))))) diff --git a/if.lsp b/data-and-control-flow/if.lsp similarity index 98% rename from if.lsp rename to data-and-control-flow/if.lsp index 6f52974213a50aacbef0ba0d608b607e79e94109..5120a6ab99168fc73a535338c924eab4c6c2f4e3 100644 --- a/if.lsp +++ b/data-and-control-flow/if.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 08:21:29 2002 ;;;; Contains: Tests for IF -(in-package :cl-test) + (deftest if.1 (if t 1 2) diff --git a/labels.lsp b/data-and-control-flow/labels.lsp similarity index 99% rename from labels.lsp rename to data-and-control-flow/labels.lsp index 8c8a87a3a00fb725769d2647c8e73ba74b86caa2..47ee6c9dba80d054cd75adf291b41f7209e8960e 100644 --- a/labels.lsp +++ b/data-and-control-flow/labels.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Oct 9 19:06:33 2002 ;;;; Contains: Tests of LABELS -(in-package :cl-test) + (deftest labels.1 (labels ((%f () 1)) diff --git a/lambda-list-keywords.lsp b/data-and-control-flow/lambda-list-keywords.lsp similarity index 98% rename from lambda-list-keywords.lsp rename to data-and-control-flow/lambda-list-keywords.lsp index 12b0c5c7b00748dbf3714950ab4f63ca2af00fdb..1bd6daf5413a05cfd6bf72e369c3d68f73f0f72d 100644 --- a/lambda-list-keywords.lsp +++ b/data-and-control-flow/lambda-list-keywords.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Oct 7 22:11:31 2002 ;;;; Contains: Tests for LAMBDA-LIST-KEYWORDS -(in-package :cl-test) + ;;; The variable is bound (deftest lambda-list-keywords.1 diff --git a/lambda-parameters-limit.lsp b/data-and-control-flow/lambda-parameters-limit.lsp similarity index 94% rename from lambda-parameters-limit.lsp rename to data-and-control-flow/lambda-parameters-limit.lsp index c886cf10b55a148be2de69dd11468d6cd16bbb79..d7397ff5c3353bb592f42bbcfa7327703aec6d12 100644 --- a/lambda-parameters-limit.lsp +++ b/data-and-control-flow/lambda-parameters-limit.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 10 22:45:44 2002 ;;;; Contains: Tests for LAMBDA-PARAMETERS-LIMIT -(in-package :cl-test) + (deftest lambda-parameters-limit.1 (not (typep lambda-parameters-limit 'integer)) diff --git a/let.lsp b/data-and-control-flow/let.lsp similarity index 99% rename from let.lsp rename to data-and-control-flow/let.lsp index a0abb783a637763a825298f2e68e66e1b0babfde..a540136228cd95d68a6a630990375c436d90d3fe 100644 --- a/let.lsp +++ b/data-and-control-flow/let.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 12 09:24:36 2002 ;;;; Contains: Tests for LET, LET* -(in-package :cl-test) + ;;; LET and LET* are also heavily exercised in the many other tests. diff --git a/letstar.lsp b/data-and-control-flow/letstar.lsp similarity index 99% rename from letstar.lsp rename to data-and-control-flow/letstar.lsp index 3b917d79f13d1974a3da4e05abf2159ede4f0934..9902095d68ae1d05ed4e3d69072226476a867486 100644 --- a/letstar.lsp +++ b/data-and-control-flow/letstar.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Jun 24 20:53:36 2005 ;;;; Contains: Tests for LET* -(in-package :cl-test) + (deftest let*.1 (let* ((x 0)) x) diff --git a/data-and-control-flow/load.lsp b/data-and-control-flow/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..7e95673041ce9e00d90acdc7dae29ec863a84e86 --- /dev/null +++ b/data-and-control-flow/load.lsp @@ -0,0 +1,88 @@ +;;; Tests of data and control flow +(compile-and-load "ANSI-TESTS:AUX;cons-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;random-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;types-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "data-and-control-flow.lsp") + (load "places.lsp") + (load "psetq.lsp") + (load "psetf.lsp") + (load "shiftf.lsp") + (load "rotatef.lsp") + (load "return.lsp") + (load "return-from.lsp") + (load "defsetf.lsp") + (load "define-setf-expander.lsp") + + (load "and.lsp") + (load "apply.lsp") + (load "block.lsp") + (load "call-arguments-limit.lsp") + (load "case.lsp") + (load "catch.lsp") + (load "ccase.lsp") + (load "compiled-function-p.lsp") + (load "complement.lsp") + (load "cond.lsp") + (load "constantly.lsp") + (load "ctypecase.lsp") + (load "defconstant.lsp") + (load "define-modify-macro.lsp") + (load "defparameter.lsp") + (load "defun.lsp") + (load "defvar.lsp") + (load "destructuring-bind.lsp") + (load "ecase.lsp") + (load "eql.lsp") + (load "equal.lsp") + (load "equalp.lsp") + (load "etypecase.lsp") + (load "every.lsp") + (load "fboundp.lsp") + (load "fdefinition.lsp") + (load "flet.lsp") + (load "fmakunbound.lsp") + (load "funcall.lsp") + (load "function-lambda-expression.lsp") + (load "function.lsp") + (load "functionp.lsp") + (load "get-setf-expansion.lsp") + (load "identity.lsp") + (load "if.lsp") + (load "labels.lsp") + (load "lambda-list-keywords.lsp") + (load "lambda-parameters-limit.lsp") + (load "let.lsp") + (load "letstar.lsp") + (load "macrolet.lsp") + (load "multiple-value-bind.lsp") + (load "multiple-value-call.lsp") ;; include multiple-value-list + (load "multiple-value-prog1.lsp") + (load "multiple-value-setq.lsp") + (load "multiple-value-list.lsp") + (load "nil.lsp") + (load "not-and-null.lsp") + (load "notany.lsp") + (load "notevery.lsp") + (load "nth-value.lsp") + (load "or.lsp") + (load "prog.lsp") + (load "prog1.lsp") + (load "prog2.lsp") + (load "progn.lsp") + (load "progv.lsp") + (load "some.lsp") + (load "t.lsp") + (load "tagbody.lsp") + (load "typecase.lsp") + (load "unless.lsp") + (load "unwind-protect.lsp") + (load "values-list.lsp") + (load "values.lsp") + (load "when.lsp") +) diff --git a/macrolet.lsp b/data-and-control-flow/macrolet.lsp similarity index 99% rename from macrolet.lsp rename to data-and-control-flow/macrolet.lsp index 0fb2189beb748efe8a785adf577fe42a3278be2f..3cb5d19903694833f123e9b65b65f956418a4c18 100644 --- a/macrolet.lsp +++ b/data-and-control-flow/macrolet.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Oct 9 19:41:24 2002 ;;;; Contains: Tests of MACROLET -(in-package :cl-test) + (deftest macrolet.1 (let ((z (list 3 4))) diff --git a/multiple-value-bind.lsp b/data-and-control-flow/multiple-value-bind.lsp similarity index 99% rename from multiple-value-bind.lsp rename to data-and-control-flow/multiple-value-bind.lsp index be31f9fc6193a28ae203e30ae0dd472978f4db35..421a76fe50a56d4224c8ef92ad92650aedff5877 100644 --- a/multiple-value-bind.lsp +++ b/data-and-control-flow/multiple-value-bind.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 23:16:23 2002 ;;;; Contains: Tests for MULTIPLE-VALUE-BIND -(in-package :cl-test) + (deftest multiple-value-bind.1 (multiple-value-bind (x y z) (values 1 2 3) diff --git a/multiple-value-call.lsp b/data-and-control-flow/multiple-value-call.lsp similarity index 97% rename from multiple-value-call.lsp rename to data-and-control-flow/multiple-value-call.lsp index ab374ceef0826f47bbd1713a9ece7cd3877677a8..22887d97671db5ed0e1810405e269ea539b673b3 100644 --- a/multiple-value-call.lsp +++ b/data-and-control-flow/multiple-value-call.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 23:35:07 2002 ;;;; Contains: Tests of MULTIPLE-VALUE-CALL, MULTIPLE-VALUE-LIST -(in-package :cl-test) + (deftest multiple-value-call.1 (multiple-value-call #'+ (values 1 2) (values) 3 (values 4 5 6)) diff --git a/multiple-value-list.lsp b/data-and-control-flow/multiple-value-list.lsp similarity index 98% rename from multiple-value-list.lsp rename to data-and-control-flow/multiple-value-list.lsp index 340644f89f45a6c03e159455ea6025ba65bfb872..20a6f3af08b317d09988b4557048b092924ce73c 100644 --- a/multiple-value-list.lsp +++ b/data-and-control-flow/multiple-value-list.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Feb 17 06:38:07 2003 ;;;; Contains: Tests of MULTIPLE-VALUE-LIST -(in-package :cl-test) + (deftest multiple-value-list.1 (multiple-value-list 'a) diff --git a/multiple-value-prog1.lsp b/data-and-control-flow/multiple-value-prog1.lsp similarity index 98% rename from multiple-value-prog1.lsp rename to data-and-control-flow/multiple-value-prog1.lsp index 84df462208f3cf4eb3c47d5674792eae3e572679..716f7574d2418ff9c02614c77487ee4a44c539d8 100644 --- a/multiple-value-prog1.lsp +++ b/data-and-control-flow/multiple-value-prog1.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 19 06:48:02 2002 ;;;; Contains: Tests for MULTIPLE-VALUE-PROG1 -(in-package :cl-test) + (deftest multiple-value-prog1.1 (multiple-value-prog1 nil) diff --git a/multiple-value-setq.lsp b/data-and-control-flow/multiple-value-setq.lsp similarity index 99% rename from multiple-value-setq.lsp rename to data-and-control-flow/multiple-value-setq.lsp index 672a226dfd47a1a0db239ebd1b15b98d8d4a9b10..809a1b7fa7db2a2800d6d816957e8767f429ef98 100644 --- a/multiple-value-setq.lsp +++ b/data-and-control-flow/multiple-value-setq.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 19 07:00:57 2002 ;;;; Contains: Tests of MULTIPLE-VALUE-SETQ -(in-package :cl-test) + (deftest multiple-value-setq.1 (let ((x 1) (y 2)) diff --git a/nil.lsp b/data-and-control-flow/nil.lsp similarity index 96% rename from nil.lsp rename to data-and-control-flow/nil.lsp index 1c369f88c50e8daa8301fb327d362e8b21921098..393029572a7b7d657be803060c87c833745b9e88 100644 --- a/nil.lsp +++ b/data-and-control-flow/nil.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 17 06:32:46 2002 ;;;; Contains: Tests for NIL -(in-package :cl-test) + (deftest nil.1 (check-predicate #'(lambda (x) (not (subtypep (type-of x) nil)))) diff --git a/not-and-null.lsp b/data-and-control-flow/not-and-null.lsp similarity index 97% rename from not-and-null.lsp rename to data-and-control-flow/not-and-null.lsp index 087779fc6f9ccb4d2b500af0b44503e2ec333048..b3bbaf7d67b56ce6758181e00796a74dce15b2d4 100644 --- a/not-and-null.lsp +++ b/data-and-control-flow/not-and-null.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 17 06:38:33 2002 ;;;; Contains: Tests of NOT and NULL -(in-package :cl-test) + (deftest null.1 (null nil) diff --git a/notany.lsp b/data-and-control-flow/notany.lsp similarity index 99% rename from notany.lsp rename to data-and-control-flow/notany.lsp index bc7125f7d5f74f59eff55a99fd372b13cfcd01d5..d650d972db45bcbd1da25a278c343936ef29255c 100644 --- a/notany.lsp +++ b/data-and-control-flow/notany.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 07:14:14 2002 ;;;; Contains: Tests for NOTANY -(in-package :cl-test) + (deftest notany.1 (not-mv (notany #'identity nil)) diff --git a/notevery.lsp b/data-and-control-flow/notevery.lsp similarity index 99% rename from notevery.lsp rename to data-and-control-flow/notevery.lsp index 7679aef6ed56d42a72c17c616c873cbbbfb1fea8..50e91927e0d1266c9e15327cae0d0a57276ed3f5 100644 --- a/notevery.lsp +++ b/data-and-control-flow/notevery.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 07:20:12 2002 ;;;; Contains: Tests for NOTEVERY -(in-package :cl-test) + (deftest notevery.1 (notevery #'identity nil) diff --git a/nth-value.lsp b/data-and-control-flow/nth-value.lsp similarity index 98% rename from nth-value.lsp rename to data-and-control-flow/nth-value.lsp index bfcf99f6093d901d9e3257ac1684b2c9dfd75db6..8c8444e64d83db147353444565a3556f94bb87f8 100644 --- a/nth-value.lsp +++ b/data-and-control-flow/nth-value.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 19 08:24:14 2002 ;;;; Contains: Tests of NTH-VALUE -(in-package :cl-test) + (deftest nth-value.1 (nth-value 0 'a) diff --git a/or.lsp b/data-and-control-flow/or.lsp similarity index 98% rename from or.lsp rename to data-and-control-flow/or.lsp index 4142d9dcec4785bd5125b30b653e56b4525779a2..e11956426b9e6dd930436694f49500c7938003ee 100644 --- a/or.lsp +++ b/data-and-control-flow/or.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 07:29:27 2002 ;;;; Contains: Tests of OR -(in-package :cl-test) + (deftest or.1 (or) diff --git a/places.lsp b/data-and-control-flow/places.lsp similarity index 99% rename from places.lsp rename to data-and-control-flow/places.lsp index c5efd609f6f03fada4fcf0310c9542ba2a1c8b71..a4101dde667498d347ac9a95ac3e274cbfbda36e 100644 --- a/places.lsp +++ b/data-and-control-flow/places.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Oct 7 19:20:17 2002 ;;;; Contains: Tests of various kinds of places (section 5.1) -(in-package :cl-test) + ;;; Section 5.1.1.1 diff --git a/prog.lsp b/data-and-control-flow/prog.lsp similarity index 99% rename from prog.lsp rename to data-and-control-flow/prog.lsp index 400cba80b9242dd21f7407b0e9154e6aec9817c2..e2067261fa1a4b91aa6c955f1e6a7e8a5cec45f4 100644 --- a/prog.lsp +++ b/data-and-control-flow/prog.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 19 09:21:57 2002 ;;;; Contains: Tests of PROG -(in-package :cl-test) + (deftest prog.1 (prog ()) diff --git a/prog1.lsp b/data-and-control-flow/prog1.lsp similarity index 97% rename from prog1.lsp rename to data-and-control-flow/prog1.lsp index 5383f68874fc60afe5e8c5c8ca02f0f61e7ed972..d7c53fd04985b63341c3c60d10757be9705debc8 100644 --- a/prog1.lsp +++ b/data-and-control-flow/prog1.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 19 09:37:14 2002 ;;;; Contains: Tests for PROG1 -(in-package :cl-test) + (deftest prog1.1 (prog1 'a) diff --git a/prog2.lsp b/data-and-control-flow/prog2.lsp similarity index 97% rename from prog2.lsp rename to data-and-control-flow/prog2.lsp index c80086c323983fc955c7690c0a2c3720d3e7aab2..1a5d18ada28781ca6c4ce6c0089094d727a5ff83 100644 --- a/prog2.lsp +++ b/data-and-control-flow/prog2.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 19 09:40:51 2002 ;;;; Contains: Tests for PROG2 -(in-package :cl-test) + (deftest prog2.1 (prog2 'a 'b) diff --git a/progn.lsp b/data-and-control-flow/progn.lsp similarity index 97% rename from progn.lsp rename to data-and-control-flow/progn.lsp index 40e6fae8a6fa12b0b7e609a081392add396118ad..04bac3cda1cb00a7ebb7fa5cf90b83c4190f58d8 100644 --- a/progn.lsp +++ b/data-and-control-flow/progn.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 19 09:33:51 2002 ;;;; Contains: Tests of PROGN -(in-package :cl-test) + (deftest progn.1 (progn) diff --git a/progv.lsp b/data-and-control-flow/progv.lsp similarity index 99% rename from progv.lsp rename to data-and-control-flow/progv.lsp index db15c6ef3985e2e7708888fffb81d615494d212b..d0e917a6fbb1389cd53fd3048e90aac0a27724b0 100644 --- a/progv.lsp +++ b/data-and-control-flow/progv.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 12 10:00:50 2002 ;;;; Contains: Tests for PROGV -(in-package :cl-test) + (deftest progv.1 (progv () () t) diff --git a/psetf.lsp b/data-and-control-flow/psetf.lsp similarity index 99% rename from psetf.lsp rename to data-and-control-flow/psetf.lsp index 140c8677f656f85873cf3fab5687f0f42a49c17b..b3d97be30c4df0acc3de5bdec756f0379d441b39 100644 --- a/psetf.lsp +++ b/data-and-control-flow/psetf.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 15:38:30 2003 ;;;; Contains: Tests of PSETF -(in-package :cl-test) + (deftest psetf.order.1 (let ((x (vector nil nil nil nil)) diff --git a/psetq.lsp b/data-and-control-flow/psetq.lsp similarity index 98% rename from psetq.lsp rename to data-and-control-flow/psetq.lsp index 4d00dde74f4ae7b8381c2ff72009ddd305b1a330..052186de71a65ff7aec97eb63ab5e7f829eddb2e 100644 --- a/psetq.lsp +++ b/data-and-control-flow/psetq.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 15:37:20 2003 ;;;; Contains: Tests of PSETQ -(in-package :cl-test) + (deftest psetq.1 (psetq) diff --git a/return-from.lsp b/data-and-control-flow/return-from.lsp similarity index 95% rename from return-from.lsp rename to data-and-control-flow/return-from.lsp index 5bf7698b38dbb257e6d84f26ba5a0cc78e97b29f..b775aad4071fbe1998d90864945086e617e6c730 100644 --- a/return-from.lsp +++ b/data-and-control-flow/return-from.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Feb 24 20:22:23 2004 ;;;; Contains: Tests of RETURN-FROM -(in-package :cl-test) + ;;; RETURN-FROM is tested extensively in other files diff --git a/return.lsp b/data-and-control-flow/return.lsp similarity index 97% rename from return.lsp rename to data-and-control-flow/return.lsp index b8bb16546adbacb64af0d2d56a456275cbf87556..69d1d8898762665098be4fe370731728df42f082 100644 --- a/return.lsp +++ b/data-and-control-flow/return.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 16:00:32 2003 ;;;; Contains: Tests of RETURN -(in-package :cl-test) + ;;; RETURN is tested extensively in other files diff --git a/rotatef.lsp b/data-and-control-flow/rotatef.lsp similarity index 99% rename from rotatef.lsp rename to data-and-control-flow/rotatef.lsp index 76af0ddf1bc62c1890b7a03aa478882ca6f7bedc..0b90b0e125f44e167216c0037cf170a90e9fb754 100644 --- a/rotatef.lsp +++ b/data-and-control-flow/rotatef.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 15:44:38 2003 ;;;; Contains: Tests for ROTATEF -(in-package :cl-test) + (deftest rotatef-order.1 (let ((x (vector 'a 'b 'c 'd 'e 'f)) diff --git a/shiftf.lsp b/data-and-control-flow/shiftf.lsp similarity index 98% rename from shiftf.lsp rename to data-and-control-flow/shiftf.lsp index eb82f448dfbec735e2aa55bc99ae408628108f92..15ca3d98b34f3b8a6751bcc3bf169ea55e21b86e 100644 --- a/shiftf.lsp +++ b/data-and-control-flow/shiftf.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 15:43:44 2003 ;;;; Contains: Tests of SHIFTF -(in-package :cl-test) + (deftest shiftf-order.1 (let ((x (vector 'a 'b 'c 'd 'e)) diff --git a/some.lsp b/data-and-control-flow/some.lsp similarity index 99% rename from some.lsp rename to data-and-control-flow/some.lsp index e9a6715cf4acbddee4ca3b2d3e9e106460386cdc..acaadc9a0f3722127b3d96630e1468e464287490 100644 --- a/some.lsp +++ b/data-and-control-flow/some.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 07:07:07 2002 ;;;; Contains: Tests for SOME -(in-package :cl-test) + (deftest some.1 (some #'identity nil) diff --git a/t.lsp b/data-and-control-flow/t.lsp similarity index 94% rename from t.lsp rename to data-and-control-flow/t.lsp index eecb697dba4f9384dbd85269b966a1322871b555..c4759b48c0c64576aa9bcb8c7d59fbcd2157f55b 100644 --- a/t.lsp +++ b/data-and-control-flow/t.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 17 06:44:45 2002 ;;;; Contains: Tests of T -(in-package :cl-test) + (deftest t.1 t t) diff --git a/tagbody.lsp b/data-and-control-flow/tagbody.lsp similarity index 99% rename from tagbody.lsp rename to data-and-control-flow/tagbody.lsp index f6561c82ddf1997bdce855d5079f0d7955e89f81..bed1155c771338a603ed77411b5d28fe2e140b7e 100644 --- a/tagbody.lsp +++ b/data-and-control-flow/tagbody.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 12 13:27:22 2002 ;;;; Contains: Tests of TAGBODY -(in-package :cl-test) + (deftest tagbody.1 (tagbody) diff --git a/typecase.lsp b/data-and-control-flow/typecase.lsp similarity index 99% rename from typecase.lsp rename to data-and-control-flow/typecase.lsp index 925baeaef53e23e9f61201cc7cc5e20cd71db299..0e6c46751c6e9304467715578cc1e770f8b5d764 100644 --- a/typecase.lsp +++ b/data-and-control-flow/typecase.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 22:51:25 2002 ;;;; Contains: Tests for TYPECASE -(in-package :cl-test) + (deftest typecase.1 (typecase 1 (integer 'a) (t 'b)) diff --git a/unless.lsp b/data-and-control-flow/unless.lsp similarity index 98% rename from unless.lsp rename to data-and-control-flow/unless.lsp index c0ea3e45377b9eaf998309b899551745461ad227..6f157762279120a695d65986520775e327cc58a7 100644 --- a/unless.lsp +++ b/data-and-control-flow/unless.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 19:39:34 2002 ;;;; Contains: Tests of UNLESS -(in-package :cl-test) + (deftest unless.1 (unless t) diff --git a/unwind-protect.lsp b/data-and-control-flow/unwind-protect.lsp similarity index 99% rename from unwind-protect.lsp rename to data-and-control-flow/unwind-protect.lsp index 79abdf4fdde517a521383199515896261477dc0d..1825dc90151490d1fb9a18b0ea8deae38f02d989 100644 --- a/unwind-protect.lsp +++ b/data-and-control-flow/unwind-protect.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 12 14:41:16 2002 ;;;; Contains: Tests of UNWIND-PROTECT -(in-package :cl-test) + (deftest unwind-protect.1 (let ((x nil)) diff --git a/values-list.lsp b/data-and-control-flow/values-list.lsp similarity index 97% rename from values-list.lsp rename to data-and-control-flow/values-list.lsp index b2e7af8e92c5e9a75619d1809ffc0f9b58cf2f18..8917912e50394f5077cc472c20c03edaec14800f 100644 --- a/values-list.lsp +++ b/data-and-control-flow/values-list.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jan 13 16:53:39 2003 ;;;; Contains: Tests for VALUES-LIST -(in-package :cl-test) + (deftest values-list.error.1 (signals-error (values-list) program-error) diff --git a/values.lsp b/data-and-control-flow/values.lsp similarity index 98% rename from values.lsp rename to data-and-control-flow/values.lsp index a18d3a7d278b1d35064cecef71f82ddf3d4eafa5..61cbc9b693ea221cb4a526d3873ad12884c7aa50 100644 --- a/values.lsp +++ b/data-and-control-flow/values.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Oct 19 08:18:50 2002 ;;;; Contains: Tests of VALUES -(in-package :cl-test) + (deftest values.0 (values)) diff --git a/when.lsp b/data-and-control-flow/when.lsp similarity index 98% rename from when.lsp rename to data-and-control-flow/when.lsp index 1f1092ed2d090ec35c162fed1540ad73e73cfa64..20ef2f47431d22f1c7a0923141fe28c8fd08e298 100644 --- a/when.lsp +++ b/data-and-control-flow/when.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 18 19:36:57 2002 ;;;; Contains: Tests of WHEN -(in-package :cl-test) + (deftest when.1 (when t) diff --git a/directory-namestring.lsp b/directory-namestring.lsp deleted file mode 100644 index de40317766333e1c9500a03cce02f11e91042cc5..0000000000000000000000000000000000000000 --- a/directory-namestring.lsp +++ /dev/null @@ -1,50 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Sun Sep 12 06:21:42 2004 -;;;; Contains: Tests for DIRECTORY-NAMESTRING - -(in-package :cl-test) - -(deftest directory-namestring.1 - (let* ((vals (multiple-value-list - (directory-namestring "directory-namestring.lsp"))) - (s (first vals))) - (if (and (null (cdr vals)) - (stringp s) - (equal (directory-namestring s) s)) - :good - vals)) - :good) - -(deftest directory-namestring.2 - (do-special-strings - (s "directory-namestring.lsp" nil) - (let ((ns (directory-namestring s))) - (assert (stringp ns)) - (assert (string= (directory-namestring ns) ns)))) - nil) - -;;; Lispworks makes another assumption about filename normalization -;;; when using file streams as pathname designators, so this test -;;; doesn't work there. -;;; (This is another example of the difficulty of testing a feature -;;; in which so much is left up to the implementation.) -#-lispworks -(deftest directory-namestring.3 - (let* ((name "directory-namestring.lsp") - (pn (merge-pathnames (pathname name))) - (name2 (with-open-file (s pn :direction :input) - (directory-namestring s))) - (name3 (directory-namestring pn))) - (or (equalt name2 name3) (list name2 name3))) - t) - -;;; Error tests - -(deftest directory-namestring.error.1 - (signals-error (directory-namestring) program-error) - t) - -(deftest directory-namestring.error.2 - (signals-error (directory-namestring "directory-namestring.lsp" nil) program-error) - t) diff --git a/enough-namestring.lsp b/enough-namestring.lsp deleted file mode 100644 index 885b1dcb988eb03fc128a84402cbe49d911400f7..0000000000000000000000000000000000000000 --- a/enough-namestring.lsp +++ /dev/null @@ -1,84 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Sun Sep 12 06:23:50 2004 -;;;; Contains: Tests of ENOUGH-NAMESTRING - -(in-package :cl-test) - -(deftest enough-namestring.1 - (let* ((vals (multiple-value-list (enough-namestring "enough-namestring.lsp"))) - (s (first vals))) - (if (and (null (cdr vals)) - (stringp s) - (equal (enough-namestring s) s)) - :good - vals)) - :good) - -(deftest enough-namestring.2 - (do-special-strings - (s "enough-namestring.lsp" nil) - (let ((ns (enough-namestring s))) - (assert (stringp ns)) - (assert (string= (enough-namestring ns) ns)))) - nil) - -(deftest enough-namestring.3 - (let* ((name "enough-namestring.lsp") - (pn (merge-pathnames (pathname name))) - (name2 (enough-namestring pn)) - (name3 (enough-namestring name))) - (or (equalt name2 name3) (list name2 name3))) - t) - -(deftest enough-namestring.4 - (let* ((name "enough-namestring.lsp") - (pn (merge-pathnames (pathname name))) - (name2 (with-open-file (s pn :direction :input) (enough-namestring s))) - (name3 (enough-namestring name))) - (or (equalt name2 name3) (list name2 name3))) - t) - -(deftest enough-namestring.5 - (let* ((vals (multiple-value-list (enough-namestring "enough-namestring.lsp" - *default-pathname-defaults*))) - (s (first vals))) - (if (and (null (cdr vals)) - (stringp s) - (equal (enough-namestring s) s)) - :good - vals)) - :good) - -(deftest enough-namestring.6 - (let* ((vals (multiple-value-list (enough-namestring "enough-namestring.lsp" - (namestring *default-pathname-defaults*)))) - (s (first vals))) - (if (and (null (cdr vals)) - (stringp s) - (equal (enough-namestring s) s)) - :good - vals)) - :good) - -(deftest enough-namestring.7 - (do-special-strings - (s (namestring *default-pathname-defaults*) nil) - (let* ((vals (multiple-value-list (enough-namestring "enough-namestring.lsp" s))) - (s2 (first vals))) - (assert (null (cdr vals))) - (assert (stringp s2)) - (assert (equal (enough-namestring s2) s2)))) - nil) - -;;; Error tests - -(deftest enough-namestring.error.1 - (signals-error (enough-namestring) program-error) - t) - -(deftest enough-namestring.error.2 - (signals-error - (enough-namestring "enough-namestring.lsp" *default-pathname-defaults* nil) - program-error) - t) diff --git a/ensure-directories-exist.txt b/ensure-directories-exist.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6459e005434a49a66a3ddec92279a86160ad71f --- /dev/null +++ b/ensure-directories-exist.txt @@ -0,0 +1 @@ +xxx diff --git a/apropos-list.lsp b/environment/apropos-list.lsp similarity index 99% rename from apropos-list.lsp rename to environment/apropos-list.lsp index abe2062af0a14cba23017fc000d4c2e2497d0658..8ca5254c05a4046d701ca3f22320ffb1c6bdd5fd 100644 --- a/apropos-list.lsp +++ b/environment/apropos-list.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Dec 14 06:21:45 2004 ;;;; Contains: Tests of APROPOS-LIST -(in-package :cl-test) + (deftest apropos-list.1 (let ((pkg "CL-TEST-APROPOS-LIST-PACKAGE")) diff --git a/apropos.lsp b/environment/apropos.lsp similarity index 99% rename from apropos.lsp rename to environment/apropos.lsp index 4c6cd4b681831270523e748b720e9873d940fdef..828e35e5e5efcf299f5a2508a34df5aa19357e32 100644 --- a/apropos.lsp +++ b/environment/apropos.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Dec 12 16:17:47 2004 ;;;; Contains: Tests for APROPOS -(in-package :cl-test) + (deftest apropos.1 (loop for n from 10 diff --git a/decode-universal-time.lsp b/environment/decode-universal-time.lsp similarity index 99% rename from decode-universal-time.lsp rename to environment/decode-universal-time.lsp index 7884f4fa59c068e3957f2c9e50531e7a2873770f..60a198e055f37d7a014117107581babffcf4a888 100644 --- a/decode-universal-time.lsp +++ b/environment/decode-universal-time.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 7 07:00:58 2005 ;;;; Contains: Tests of DECODE-UNIVERSAL-TIME -(in-package :cl-test) + (deftest decode-universal-time.1 (decode-universal-time 0 0) diff --git a/describe.lsp b/environment/describe.lsp similarity index 99% rename from describe.lsp rename to environment/describe.lsp index 6919d6de9634ce18773a6003115f0a53c7198d00..7ccf6e2897be8b22b734db1a771a22594916159b 100644 --- a/describe.lsp +++ b/environment/describe.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Dec 12 13:22:13 2004 ;;;; Contains: Tests of DESCRIBE -(in-package :cl-test) + (defun harness-for-describe (fn) (let (s1 s2) diff --git a/disassemble.lsp b/environment/disassemble.lsp similarity index 99% rename from disassemble.lsp rename to environment/disassemble.lsp index 99e0511d797ccea0bff582382cf05d10717e1c8d..9724f4cdcb066df3a5940c284d0637bb9652ff48 100644 --- a/disassemble.lsp +++ b/environment/disassemble.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 18 20:47:58 2003 ;;;; Contains: Tests of DISASSEMBLE -(in-package :cl-test) + (defun disassemble-it (fn) (let (val) diff --git a/documentation.lsp b/environment/documentation.lsp similarity index 99% rename from documentation.lsp rename to environment/documentation.lsp index 5918a6e8e278e0e1ee508e739e38d35311347595..33e2e9f4e29797580c7f1523840782f159e378d1 100644 --- a/documentation.lsp +++ b/environment/documentation.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Dec 14 07:30:01 2004 ;;;; Contains: Tests of DOCUMENTATION -(in-package :cl-test) + ;;; documentation (x function) (doc-type (eql 't)) diff --git a/dribble.lsp b/environment/dribble.lsp similarity index 94% rename from dribble.lsp rename to environment/dribble.lsp index 487dd458f9c77d1dfb06593c7249ca780ed34f6f..33737d83d6d0b11611837bf38c6699327b4a6e03 100644 --- a/dribble.lsp +++ b/environment/dribble.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 15 12:56:29 2005 ;;;; Contains: Tests of DRIBBLE -(in-package :cl-test) + ;;; Error tests only -- cannot depend on using it in a program ;;; See the CLHS DRIBBLE and issue DRIBBLE-TECHNIQUE for an explanation diff --git a/ed.lsp b/environment/ed.lsp similarity index 94% rename from ed.lsp rename to environment/ed.lsp index 2dd2b8839f25b471ec4316568a9df5f40093c33b..6bad12f41f7c4ccbe8c13a794c64154c066719cb 100644 --- a/ed.lsp +++ b/environment/ed.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 15 13:07:39 2005 ;;;; Contains: Tests of ED -(in-package :cl-test) + ;;; Since the normal behavior of ED is implementation dependent, ;;; test only the error behavior diff --git a/encode-universal-time.lsp b/environment/encode-universal-time.lsp similarity index 99% rename from encode-universal-time.lsp rename to environment/encode-universal-time.lsp index f290db12e2a5f1684a3ce58f1886055a0a9531ec..0e66ee4be670718ffdab40f252cd7e5d1e067062 100644 --- a/encode-universal-time.lsp +++ b/environment/encode-universal-time.lsp @@ -5,7 +5,7 @@ ;;; See also the tests in decode-universal-time.lsp -(in-package :cl-test) + (deftest encode-universal-time.1 (loop with count = 0 diff --git a/environment-functions.lsp b/environment/environment-functions.lsp similarity index 97% rename from environment-functions.lsp rename to environment/environment-functions.lsp index 4958fab3d20a785ec21f2fd339f5b9755db56de3..0c3f6b61cbd291ea883c724b9813554ca794bd2f 100644 --- a/environment-functions.lsp +++ b/environment/environment-functions.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Dec 11 22:15:54 2004 ;;;; Contains: Tests of various string-returning functions from section 25 -(in-package :cl-test) + (defmacro def-env-tests (fn-name) (flet ((%name (suffix) (intern (concatenate 'string (symbol-name fn-name) suffix) diff --git a/get-internal-time.lsp b/environment/get-internal-time.lsp similarity index 98% rename from get-internal-time.lsp rename to environment/get-internal-time.lsp index 3eef56cd3e226918d57a6724de801795ef365178..5d6d63d45eae5133c0639228dd2eb67995d4d12e 100644 --- a/get-internal-time.lsp +++ b/environment/get-internal-time.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 8 20:28:21 2005 ;;;; Contains: Tests of GET-INTERNAL-REAL-TIME, GET-INTERNAL-RUN-TIME -(in-package :cl-test) + (deftest get-internal-real-time.1 (notnot-mv (typep (multiple-value-list (get-internal-real-time)) '(cons unsigned-byte null))) diff --git a/get-universal-time.lsp b/environment/get-universal-time.lsp similarity index 98% rename from get-universal-time.lsp rename to environment/get-universal-time.lsp index 76dbccd7c5678b8d4a8293ac827e41b016a58a73..ffa9b4bc042af324ca0cf296c17166810c0a3122 100644 --- a/get-universal-time.lsp +++ b/environment/get-universal-time.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 8 19:25:41 2005 ;;;; Contains: Tests of GET-UNIVERSAL-TIME, GET-DECODED-TIME -(in-package :cl-test) + ;;; Note -- this ignores the possibilty that the time cannot ;;; be determined. diff --git a/inspect.lsp b/environment/inspect.lsp similarity index 94% rename from inspect.lsp rename to environment/inspect.lsp index c23286ca9944e99be3e1d88468d85c49b89e8c6d..a0ad9cbf810125eec3ec8fee1b78de9716cbc806 100644 --- a/inspect.lsp +++ b/environment/inspect.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 15 12:54:22 2005 ;;;; Contains: Tests of INSPECT -(in-package :cl-test) + ;;; INSPECT's normal behavior is entirely implementation-dependent, ;;; so it cannot be tested here. Only test simple error cases. diff --git a/environment/load.lsp b/environment/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..95d8b2cff870d32e2389dde7ac0bc3a798d5de29 --- /dev/null +++ b/environment/load.lsp @@ -0,0 +1,31 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Sun Dec 12 19:43:17 2004 +;;;; Contains: Load environment tests (section 25) + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "apropos.lsp") + (load "apropos-list.lsp") + (load "describe.lsp") + (load "disassemble.lsp") + (load "environment-functions.lsp") + (load "room.lsp") + (load "time.lsp") + (load "trace.lsp") ;; and untrace + (load "user-homedir-pathname.lsp") + + (load "decode-universal-time.lsp") + (load "encode-universal-time.lsp") + (load "get-universal-time.lsp") + (load "sleep.lsp") + (load "get-internal-time.lsp") + + (load "documentation.lsp") + #-lispworks (load "inspect.lsp") + (load "dribble.lsp") + (load "ed.lsp") +) diff --git a/room.lsp b/environment/room.lsp similarity index 97% rename from room.lsp rename to environment/room.lsp index ef09eb7630a3d214f3cf39cb371c37004d1fb5c5..ac7c43d66d0b816af214afb656d956d8b26078da 100644 --- a/room.lsp +++ b/environment/room.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Dec 12 09:20:47 2004 ;;;; Contains: Tests of ROOM -(in-package :cl-test) + (deftest room.1 (let ((s (with-output-to-string diff --git a/sleep.lsp b/environment/sleep.lsp similarity index 97% rename from sleep.lsp rename to environment/sleep.lsp index 91e591e6893cc8aec225d21fc1cd0959678a5f87..d8445b2690d3f3d041c85ebaca84677dc66f5134 100644 --- a/sleep.lsp +++ b/environment/sleep.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 8 19:53:39 2005 ;;;; Contains: Tests of SLEEP -(in-package :cl-test) + (deftest sleep.1 (sleep 0) diff --git a/time.lsp b/environment/time.lsp similarity index 98% rename from time.lsp rename to environment/time.lsp index 9494e6173c0f5f56779c55ffb7825c01ecd040b2..e55ba80ffb4b60ea36f4bb9cedfb3025d74c6769 100644 --- a/time.lsp +++ b/environment/time.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Dec 12 09:43:47 2004 ;;;; Contains: Tests of TIME -(in-package :cl-test) + (deftest time.1 (let ((s (with-output-to-string diff --git a/trace.lsp b/environment/trace.lsp similarity index 99% rename from trace.lsp rename to environment/trace.lsp index a98345860f3f70c58ccbac69fe8ec36886b9b88f..e20d92c4510ffdde907719a55361ac662ce7852b 100644 --- a/trace.lsp +++ b/environment/trace.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Dec 12 19:53:11 2004 ;;;; Contains: Tests of TRACE, UNTRACE -(in-package :cl-test) + (defun function-to-trace (x) (car x)) (defun another-function-to-trace (x) (cdr x)) diff --git a/user-homedir-pathname.lsp b/environment/user-homedir-pathname.lsp similarity index 98% rename from user-homedir-pathname.lsp rename to environment/user-homedir-pathname.lsp index 1200546b93a6dc2a8f479dc5de3a7dd4a8d1ae9c..f8e13da1d0f8953512a4927c1d4e00d9af350d5f 100644 --- a/user-homedir-pathname.lsp +++ b/environment/user-homedir-pathname.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Dec 11 22:26:24 2004 ;;;; Contains: Tests of USER-HOMEDIR-PATHNAME -(in-package :cl-test) + (deftest user-homedir-pathname.1 (let ((pn (user-homedir-pathname))) diff --git a/compile.lsp b/eval-and-compile/compile.lsp similarity index 99% rename from compile.lsp rename to eval-and-compile/compile.lsp index 64dbd6e2267a547ef91c49a82eb0959bff8993dd..9ac60e879008535acaa32ad0bbe7191170c9ac94 100644 --- a/compile.lsp +++ b/eval-and-compile/compile.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Oct 10 20:54:20 2002 ;;;; Contains: Tests for COMPILE, COMPILED-FUNCTION-P, COMPILED-FUNCTION -(in-package :cl-test) + (deftest compile.1 (progn diff --git a/compiler-macros.lsp b/eval-and-compile/compiler-macros.lsp similarity index 88% rename from compiler-macros.lsp rename to eval-and-compile/compiler-macros.lsp index 116b2aa434aaf1a5771ffa02f943805d8005da1f..d3d42671f9e1d9694fd789be86535acdd3ec8577 100644 --- a/compiler-macros.lsp +++ b/eval-and-compile/compiler-macros.lsp @@ -3,6 +3,6 @@ ;;;; Created: Mon Jan 13 18:51:30 2003 ;;;; Contains: Tests for compiler macros -(in-package :cl-test) + ;;; Compiler macro tests will go here diff --git a/constantp.lsp b/eval-and-compile/constantp.lsp similarity index 98% rename from constantp.lsp rename to eval-and-compile/constantp.lsp index eb935183d2e562b61c4e7ed04f30e8c4fdf164b1..1e51414d243f545013795dbcd5bdb92e1323f3ea 100644 --- a/constantp.lsp +++ b/eval-and-compile/constantp.lsp @@ -5,7 +5,7 @@ ;;; See also defconstant.lsp -(in-package :cl-test) + ;;; Error tests diff --git a/declaim.lsp b/eval-and-compile/declaim.lsp similarity index 97% rename from declaim.lsp rename to eval-and-compile/declaim.lsp index f64066316b409286d5017027f6b974719a931200..31612b37f6873052a1a883a47ac0f9c69734df58 100644 --- a/declaim.lsp +++ b/eval-and-compile/declaim.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 21 07:44:07 2005 ;;;; Contains: Tests of DECLAIM -(in-package :cl-test) + (deftest declaim.1 (progn (declaim) nil) diff --git a/declaration.lsp b/eval-and-compile/declaration.lsp similarity index 99% rename from declaration.lsp rename to eval-and-compile/declaration.lsp index 09ca953f7c9823dcf2febfa79d7e7faa6b7269c6..f216e1879452c35e80c58a9e585443d58d4048d4 100644 --- a/declaration.lsp +++ b/eval-and-compile/declaration.lsp @@ -4,7 +4,7 @@ ;;;; Contains: Tests of the DECLARATION declarations -(in-package :cl-test) + (deftest declaration.1 (progn (declaim (declaration)) nil) diff --git a/define-compiler-macro.lsp b/eval-and-compile/define-compiler-macro.lsp similarity index 99% rename from define-compiler-macro.lsp rename to eval-and-compile/define-compiler-macro.lsp index a8b290da0a3e120e1104aa45de4f18a3d32f8f0d..fc0440b0b033b091918f16730c2694f3ff7124aa 100644 --- a/define-compiler-macro.lsp +++ b/eval-and-compile/define-compiler-macro.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 12:33:02 2003 ;;;; Contains: Tests of DEFINE-COMPILER-MACRO -(in-package :cl-test) + ;;; Need to add non-error tests diff --git a/define-symbol-macro.lsp b/eval-and-compile/define-symbol-macro.lsp similarity index 97% rename from define-symbol-macro.lsp rename to eval-and-compile/define-symbol-macro.lsp index e3af2f465e3b72be8f314f2c3a552ab8f107600b..d29fdda5a78f07b86d38bf18927d5ce3ae14c6bf 100644 --- a/define-symbol-macro.lsp +++ b/eval-and-compile/define-symbol-macro.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 12:55:05 2003 ;;;; Contains: Tests of DEFINE-SYMBOL-MACRO -(in-package :cl-test) + (deftest define-symbol-macro.error.1 (signals-error (funcall (macro-function 'define-symbol-macro)) diff --git a/defmacro.lsp b/eval-and-compile/defmacro.lsp similarity index 99% rename from defmacro.lsp rename to eval-and-compile/defmacro.lsp index 5510951d30039b7bcc2312deb6a13394d46b1bb9..f1aa869ac3e6723ff56573f0c626250e7647eae9 100644 --- a/defmacro.lsp +++ b/eval-and-compile/defmacro.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 20 12:35:24 2003 ;;;; Contains: Tests of DEFMACRO -(in-package :cl-test) + (deftest defmacro.error.1 (signals-error (funcall (macro-function 'defmacro)) diff --git a/dynamic-extent.lsp b/eval-and-compile/dynamic-extent.lsp similarity index 99% rename from dynamic-extent.lsp rename to eval-and-compile/dynamic-extent.lsp index 9bfc507a691316acc3201bda43bd4fbf934d378a..b91b284e1613683837f597c7314212ecc23f1923 100644 --- a/dynamic-extent.lsp +++ b/eval-and-compile/dynamic-extent.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 21 09:10:52 2005 ;;;; Contains: Tests of DYNAMIC-EXTENT -(in-package :cl-test) + (deftest dynamic-extent.1 (let () (declare (dynamic-extent))) diff --git a/eval-and-compile.lsp b/eval-and-compile/eval-and-compile.lsp similarity index 96% rename from eval-and-compile.lsp rename to eval-and-compile/eval-and-compile.lsp index 265a54255aae6e85f8c63b9f851caa1e2f013fc1..fc2758b0d37c0200c0b9ee03b2a5fd45efc612a4 100644 --- a/eval-and-compile.lsp +++ b/eval-and-compile/eval-and-compile.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Oct 21 22:52:19 2002 ;;;; Contains: Overall tests for section 3, 'Evaluation and Compilation' -(in-package :cl-test) + (defparameter *eval-and-compile-fns* '(compile eval macroexpand macroexpand-1 proclaim special-operator-p diff --git a/eval-when.lsp b/eval-and-compile/eval-when.lsp similarity index 99% rename from eval-when.lsp rename to eval-and-compile/eval-when.lsp index cd347694cc4c153ee131b2b7d94f572802bd263a..2b21b6bec4eb386379f0efd00389be6908a75fa7 100644 --- a/eval-when.lsp +++ b/eval-and-compile/eval-when.lsp @@ -6,7 +6,7 @@ ;;; The following test was suggested by Sam Steingold, ;;; so I've created this file to hold it. -(in-package :cl-test) + (defvar *eval-when.1-collector*) diff --git a/eval.lsp b/eval-and-compile/eval.lsp similarity index 97% rename from eval.lsp rename to eval-and-compile/eval.lsp index 44d36c8be6e531e99395e125a068a7b7282d75b2..8b6b777d20c1d845aaf56a09536ba6f6d90e5835 100644 --- a/eval.lsp +++ b/eval-and-compile/eval.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Nov 21 10:43:15 2002 ;;;; Contains: Tests of EVAL -(in-package :cl-test) + (deftest eval.1 (eval 1) diff --git a/ignorable.lsp b/eval-and-compile/ignorable.lsp similarity index 98% rename from ignorable.lsp rename to eval-and-compile/ignorable.lsp index f8b5962015dfb9b34c3f8805d6bc969b0da7bf07..f5eacadb0f61335a4e706fbfcf1f1ea37f3eee61 100644 --- a/ignorable.lsp +++ b/eval-and-compile/ignorable.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 21 08:16:27 2005 ;;;; Contains: Tests of the IGNORABLE declaration -(in-package :cl-test) + (deftest ignorable.1 (let ((x 'foo)) (declare (ignorable x))) diff --git a/ignore.lsp b/eval-and-compile/ignore.lsp similarity index 97% rename from ignore.lsp rename to eval-and-compile/ignore.lsp index 066a3283e8ead67ac72186aa9b5789d708e8f03a..228f477ac50b80c183eaa0784d37c31b6ce6e912 100644 --- a/ignore.lsp +++ b/eval-and-compile/ignore.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 21 07:59:24 2005 ;;;; Contains: Tests of the IGNORE declarations -(in-package :cl-test) + (deftest ignore.1 (let ((x 'foo)) (declare (ignore x))) diff --git a/lambda.lsp b/eval-and-compile/lambda.lsp similarity index 99% rename from lambda.lsp rename to eval-and-compile/lambda.lsp index 57d9cfdc51bbfe7310c11cd9e5b560e4a0fabe3e..e4afedab8fd70cb2f0c52c717c1e9808b7cc0e95 100644 --- a/lambda.lsp +++ b/eval-and-compile/lambda.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Nov 27 06:43:21 2002 ;;;; Contains: Tests of LAMBDA forms -(in-package :cl-test) + (deftest lambda.1 ((lambda (x) x) 'a) diff --git a/eval-and-compile/load.lsp b/eval-and-compile/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..7688a7a537f0caca5b80e3c231ef634fc2fb32d4 --- /dev/null +++ b/eval-and-compile/load.lsp @@ -0,0 +1,32 @@ +;;; Tests of evaluation and compilation + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "eval.lsp") + (load "eval-and-compile.lsp") + (load "compile.lsp") + (load "compiler-macros.lsp") + (load "constantp.lsp") + (load "lambda.lsp") + (load "eval-when.lsp") + (load "define-compiler-macro.lsp") + (load "define-symbol-macro.lsp") + (load "defmacro.lsp") + (load "the.lsp") + (load "symbol-macrolet.lsp") + (load "proclaim.lsp") + (load "declaim.lsp") + (load "locally.lsp") + (load "ignore.lsp") + (load "ignorable.lsp") + (load "dynamic-extent.lsp") + (load "optimize.lsp") + (load "special.lsp") + (load "macroexpand.lsp") + (load "macroexpand-1.lsp") + (load "declaration.lsp") + (load "type.lsp") + (load "macro-function.lsp")) diff --git a/locally.lsp b/eval-and-compile/locally.lsp similarity index 97% rename from locally.lsp rename to eval-and-compile/locally.lsp index a198d8ba495da054e91edcec046c66508ac3089a..d8658a88c36a0c79c2e6b52cde012c6af055390c 100644 --- a/locally.lsp +++ b/eval-and-compile/locally.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 8 06:02:47 2005 ;;;; Contains: Tests of LOCALLY -(in-package :cl-test) + (deftest locally.1 (locally) diff --git a/macro-function.lsp b/eval-and-compile/macro-function.lsp similarity index 99% rename from macro-function.lsp rename to eval-and-compile/macro-function.lsp index 2dfcb761db881cd5f156a995377c4ffc75c0bc00..4f057bb51b6f7eb18944d3f81c0a81ed0b40c8b2 100644 --- a/macro-function.lsp +++ b/eval-and-compile/macro-function.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Jun 3 22:17:34 2005 ;;;; Contains: Tests of MACRO-FUNCTION -(in-package :cl-test) + (deftest macro-function.1 (loop for n in *cl-macro-symbols* diff --git a/macroexpand-1.lsp b/eval-and-compile/macroexpand-1.lsp similarity index 98% rename from macroexpand-1.lsp rename to eval-and-compile/macroexpand-1.lsp index 5b8dcc484041fa2a911269438a90dfd8322a070c..8c261d834590a8f379cc4bafa498d43cf20f431f 100644 --- a/macroexpand-1.lsp +++ b/eval-and-compile/macroexpand-1.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 28 13:47:32 2005 ;;;; Contains: Tests of MACROEXPAND-1 -(in-package :cl-test) + (deftest macroexpand-1.error.1 (signals-error (macroexpand-1) program-error) diff --git a/macroexpand.lsp b/eval-and-compile/macroexpand.lsp similarity index 98% rename from macroexpand.lsp rename to eval-and-compile/macroexpand.lsp index 3db6b1784e02fee63a857f83b27820711e23d6ad..9b21474770c162596e81a84936ab78fd6e7bce03 100644 --- a/macroexpand.lsp +++ b/eval-and-compile/macroexpand.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 28 13:43:00 2005 ;;;; Contains: Tests of MACROEXPAND -(in-package :cl-test) + (deftest macroexpand.error.1 (signals-error (macroexpand) program-error) diff --git a/optimize.lsp b/eval-and-compile/optimize.lsp similarity index 98% rename from optimize.lsp rename to eval-and-compile/optimize.lsp index 20671444d2e2a286ec9fdc52a0ac49b7a179d325..d6caf1cfaafda256333d4d84eda4bb85fdbb750f 100644 --- a/optimize.lsp +++ b/eval-and-compile/optimize.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 21 09:31:34 2005 ;;;; Contains: Tests of the OPTIMIZE declaration -(in-package :cl-test) + (deftest optimize.1 (locally (declare (optimize)) nil) diff --git a/proclaim.lsp b/eval-and-compile/proclaim.lsp similarity index 98% rename from proclaim.lsp rename to eval-and-compile/proclaim.lsp index 76f61838b140413ee9ae86e01e230e420cd2608c..803c1a505509f57dd269900a8773b5c42e2c280f 100644 --- a/proclaim.lsp +++ b/eval-and-compile/proclaim.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 21 07:33:53 2005 ;;;; Contains: Tests of PROCLAIM -(in-package :cl-test) + (deftest proclaim.1 (let ((sym (gensym))) diff --git a/special.lsp b/eval-and-compile/special.lsp similarity index 96% rename from special.lsp rename to eval-and-compile/special.lsp index 699f5290db5e2a69ea1f450f221149bb15e1acdf..dbb85bfe9fa3fbd4097d691fcc4e3804ec10e5cb 100644 --- a/special.lsp +++ b/eval-and-compile/special.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 21 12:51:59 2005 ;;;; Contains: Tests of the declaration SPECIAL -(in-package :cl-test) + ;;; Many tests for this declaration are in the tests ;;; for specific binding forms. diff --git a/symbol-macrolet.lsp b/eval-and-compile/symbol-macrolet.lsp similarity index 98% rename from symbol-macrolet.lsp rename to eval-and-compile/symbol-macrolet.lsp index dc331cbe071b95583433bfa2aeffe199155de468..341d14b8c0f1d4bb2de27ec844c6bc63db37b58c 100644 --- a/symbol-macrolet.lsp +++ b/eval-and-compile/symbol-macrolet.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 8 05:58:53 2005 ;;;; Contains: Tests of SYMBOL-MACROLET -(in-package :cl-test) + (deftest symbol-macrolet.1 (loop for s in *cl-non-variable-constant-symbols* diff --git a/the.lsp b/eval-and-compile/the.lsp similarity index 99% rename from the.lsp rename to eval-and-compile/the.lsp index ace4c1a77c4f7db8b7108ccf21d0ec09ab9c746c..466637c98838e9838b79d6024b913d1604cc43e8 100644 --- a/the.lsp +++ b/eval-and-compile/the.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue May 6 06:48:48 2003 ;;;; Contains: Tests of THE -(in-package :cl-test) + (deftest the.1 (the (values) (values))) diff --git a/type.lsp b/eval-and-compile/type.lsp similarity index 98% rename from type.lsp rename to eval-and-compile/type.lsp index 17244f414a7006ea04746ab7aa8b89de2674d823..d4f683ba8c76713b3365fc56885338acbb9cc0c2 100644 --- a/type.lsp +++ b/eval-and-compile/type.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 29 08:25:46 2005 ;;;; Contains: Tests of TYPE declarations -(in-package :cl-test) + ;;; Also of implicit type declarations diff --git a/file-author.txt b/file-author.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6459e005434a49a66a3ddec92279a86160ad71f --- /dev/null +++ b/file-author.txt @@ -0,0 +1 @@ +xxx diff --git a/file-error.txt b/file-error.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/file-namestring.lsp b/file-namestring.lsp deleted file mode 100644 index cc68ecac679784e0b822a548dcce43f15405143f..0000000000000000000000000000000000000000 --- a/file-namestring.lsp +++ /dev/null @@ -1,44 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Sat Sep 11 07:40:47 2004 -;;;; Contains: Tests for FILE-NAMESTRING - -(in-package :cl-test) - -(deftest file-namestring.1 - (let* ((vals (multiple-value-list - (file-namestring "file-namestring.lsp"))) - (s (first vals))) - (if (and (null (cdr vals)) - (stringp s) - (equal (file-namestring s) s)) - :good - vals)) - :good) - -(deftest file-namestring.2 - (do-special-strings - (s "file-namestring.lsp" nil) - (let ((ns (file-namestring s))) - (assert (stringp ns)) - (assert (string= (file-namestring ns) ns)))) - nil) - -(deftest file-namestring.3 - (let* ((name "file-namestring.lsp") - (pn (merge-pathnames (pathname name))) - (name2 (with-open-file (s pn :direction :input) - (file-namestring s))) - (name3 (file-namestring pn))) - (or (equalt name2 name3) (list name2 name3))) - t) - -;;; Error tests - -(deftest file-namestring.error.1 - (signals-error (file-namestring) program-error) - t) - -(deftest file-namestring.error.2 - (signals-error (file-namestring "file-namestring.lsp" nil) program-error) - t) diff --git a/delete-file.lsp b/files/delete-file.lsp similarity index 99% rename from delete-file.lsp rename to files/delete-file.lsp index 05d594233ee18a95bdce594dcbe209be1c499b51..7f8a8b3ae2a1e0db1be61f5f533ff745a15d67e3 100644 --- a/delete-file.lsp +++ b/files/delete-file.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 13 18:42:29 2004 ;;;; Contains: Tests for DELETE-FILE -(in-package :cl-test) + (deftest delete-file.1 (let ((pn "scratchfile.txt")) diff --git a/directory.lsp b/files/directory.lsp similarity index 70% rename from directory.lsp rename to files/directory.lsp index f39701c14ba2a656b7e2cff32f830dd37f7114e1..ea5c2babc5490635d82b659500aab250838ecc4e 100644 --- a/directory.lsp +++ b/files/directory.lsp @@ -3,26 +3,26 @@ ;;;; Created: Thu Jan 1 12:00:18 2004 ;;;; Contains: Tests of DIRECTORY -(in-package :cl-test) + (deftest directory.1 - (directory "nonexistent") + (directory "sample-files/nonexistent") nil) (deftest directory.2 - (directory #p"nonexistent") + (directory #p"sample-files/nonexistent") nil) (deftest directory.3 - (directory "nonexistent" :allow-other-keys nil) + (directory "sample-files/nonexistent" :allow-other-keys nil) nil) (deftest directory.4 - (directory "nonexistent" :allow-other-keys t :foo 'bar) + (directory "sample-files/nonexistent" :allow-other-keys t :foo 'bar) nil) (deftest directory.5 - (directory "nonexistent" :foo 0 :allow-other-keys t) + (directory "sample-files/nonexistent" :foo 0 :allow-other-keys t) nil) (deftest directory.6 @@ -51,16 +51,18 @@ nil) (deftest directory.8 - (let* ((pathname-pattern "CLTEST:*.*") - (len (length (directory pathname-pattern)))) - (if (< len 500) len nil)) + ;; what does this test do? Checks if we have >= then 30 files? + ;; seems bogus to me -- jd + (let* ((pathname-pattern "CLTEST:*.*") + (len (length (directory pathname-pattern)))) + (if (< len 30) len nil)) nil) ;;; Specialized string tests (deftest directory.9 (do-special-strings - (s "nonexistent" nil) + (s "sample-files/nonexistent" nil) (assert (null (directory s)))) nil) diff --git a/ensure-directories-exist.lsp b/files/ensure-directories-exist.lsp similarity index 90% rename from ensure-directories-exist.lsp rename to files/ensure-directories-exist.lsp index 5ed7dc78b2808a18aa9c7f80e83b8022a9775a6f..bdb67b982566e31716ea1d9fd6750eecb2ace779 100644 --- a/ensure-directories-exist.lsp +++ b/files/ensure-directories-exist.lsp @@ -3,10 +3,8 @@ ;;;; Created: Mon Jan 5 20:53:03 2004 ;;;; Contains: Tests of ENSURE-DIRECTORIES-EXIST -(in-package :cl-test) - (deftest ensure-directories-exist.1 - (let* ((pn (make-pathname :name "ensure-directories-exist.lsp" + (let* ((pn (make-pathname :name "ensure-directories-exist.txt" :defaults *default-pathname-defaults*)) (results nil) (verbosity @@ -22,7 +20,7 @@ (deftest ensure-directories-exist.2 (with-open-file - (s "ensure-directories-exist.lsp" :direction :input) + (s "ensure-directories-exist.txt" :direction :input) (let* ((results (multiple-value-list (ensure-directories-exist s)))) (values (length results) @@ -31,7 +29,7 @@ 2 t nil) (deftest ensure-directories-exist.3 - (let ((s (open "ensure-directories-exist.lsp" :direction :input))) + (let ((s (open "ensure-directories-exist.txt" :direction :input))) (close s) (let* ((results (multiple-value-list (ensure-directories-exist s)))) (values @@ -41,7 +39,7 @@ 2 t nil) (deftest ensure-directories-exist.4 - (let* ((pn (make-pathname :name "ensure-directories-exist.lsp" + (let* ((pn (make-pathname :name "ensure-directories-exist.txt" :defaults *default-pathname-defaults*)) (results nil) (verbosity @@ -57,7 +55,7 @@ 2 t nil "") (deftest ensure-directories-exist.5 - (let* ((pn (make-pathname :name "ensure-directories-exist.lsp" + (let* ((pn (make-pathname :name "ensure-directories-exist.txt" :defaults *default-pathname-defaults*)) (results nil) (verbosity @@ -73,7 +71,7 @@ 2 t nil "") (deftest ensure-directories-exist.6 - (let* ((pn (make-pathname :name "ensure-directories-exist.lsp" + (let* ((pn (make-pathname :name "ensure-directories-exist.txt" :defaults *default-pathname-defaults*)) (results nil) (verbosity @@ -90,7 +88,7 @@ 2 t nil "") (deftest ensure-directories-exist.7 - (let* ((pn (make-pathname :name "ensure-directories-exist.lsp" + (let* ((pn (make-pathname :name "ensure-directories-exist.txt" :defaults *default-pathname-defaults*)) (results nil) (verbosity @@ -142,7 +140,7 @@ (deftest ensure-directories-exist.9 (do-special-strings - (str "ensure-directories-exist.lsp" nil) + (str "ensure-directories-exist.txt" nil) (let* ((results (multiple-value-list (ensure-directories-exist str)))) (assert (eql (length results) 2)) (assert (equalt (truename (first results)) (truename str))) diff --git a/file-author.lsp b/files/file-author.lsp similarity index 78% rename from file-author.lsp rename to files/file-author.lsp index 2d33a1b90bcd59571471d5deafcdc94040b75e06..0389601941daa9cf1a3cfb6a32c7ddf59689c284 100644 --- a/file-author.lsp +++ b/files/file-author.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jan 6 05:41:06 2004 ;;;; Contains: Tests of FILE-AUTHOR -(in-package :cl-test) + (deftest file-author.1 (loop for pn in @@ -15,28 +15,28 @@ nil) (deftest file-author.2 - (let ((author (file-author "file-author.lsp"))) + (let ((author (file-author "file-author.txt"))) (if (or (null author) (stringp author)) nil author)) nil) (deftest file-author.3 - (let ((author (file-author #p"file-author.lsp"))) + (let ((author (file-author #p"file-author.txt"))) (if (or (null author) (stringp author)) nil author)) nil) (deftest file-author.4 - (let ((author (file-author (truename "file-author.lsp")))) + (let ((author (file-author (truename "file-author.txt")))) (if (or (null author) (stringp author)) nil author)) nil) (deftest file-author.5 - (let ((author (with-open-file (s "file-author.lsp" :direction :input) + (let ((author (with-open-file (s "file-author.txt" :direction :input) (file-author s)))) (if (or (null author) (stringp author)) nil @@ -44,7 +44,7 @@ nil) (deftest file-author.6 - (let ((author (let ((s (open "file-author.lsp" :direction :input))) + (let ((author (let ((s (open "file-author.txt" :direction :input))) (close s) (file-author s)))) (if (or (null author) (stringp author)) @@ -56,8 +56,8 @@ (deftest file-author.7 (do-special-strings - (s "file-author.lsp" nil) - (assert (equal (file-author s) (file-author "file-author.lsp")))) + (s "file-author.txt" nil) + (assert (equal (file-author s) (file-author "file-author.txt")))) nil) ;;; FIXME @@ -70,7 +70,7 @@ t) (deftest file-author.error.2 - (signals-error (file-author "file-author.lsp" nil) program-error) + (signals-error (file-author "file-author.txt" nil) program-error) t) (deftest file-author.error.3 diff --git a/file-error.lsp b/files/file-error.lsp similarity index 87% rename from file-error.lsp rename to files/file-error.lsp index 50a25a267fa03d885df4d3f2ff4534978a907cc3..99b455048a83c406778d70c1450bfea1e41c6022 100644 --- a/file-error.lsp +++ b/files/file-error.lsp @@ -3,8 +3,6 @@ ;;;; Created: Tue Jan 13 19:10:02 2004 ;;;; Contains: Tests of the FILE-ERROR condition, and associated accessor function -(in-package :cl-test) - (deftest file-error.1 (let ((pn (make-pathname :name :wild :type "txt" @@ -46,7 +44,8 @@ t t t) (deftest file-error-pathname.4 - (let ((c (make-condition 'file-error :pathname (logical-pathname "CLTEST:foo.txt")))) + (let ((c (make-condition + 'file-error :pathname (logical-pathname "CLTEST:foo.txt")))) (values (notnot (typep c 'file-error)) (eqlt (class-of c) (find-class 'file-error)) @@ -55,7 +54,7 @@ t t t) (deftest file-error-pathname.5 - (with-open-file (s "file-error.lsp" :direction :input) + (with-open-file (s "file-error.txt" :direction :input) (let ((c (make-condition 'file-error :pathname s))) (values (notnot (typep c 'file-error)) @@ -64,7 +63,7 @@ t t t) (deftest file-error-pathname.6 - (let ((s (open "file-error.lsp" :direction :input))) + (let ((s (open "file-error.txt" :direction :input))) (close s) (let ((c (make-condition 'file-error :pathname s))) (values @@ -79,11 +78,7 @@ (deftest file-error-pathname.error.2 (signals-error - (file-error-pathname (make-condition 'file-error :pathname "foo.txt") nil) - program-error) - t) - - - - - + (file-error-pathname + (make-condition 'file-error :pathname "foo.txt") + nil) + program-error) t) diff --git a/file-write-date.lsp b/files/file-write-date.lsp similarity index 84% rename from file-write-date.lsp rename to files/file-write-date.lsp index 5c7fa1262bbd3bad306a22d1f978825514e5512a..aaa044fe58f3e86a598e7bdf1ab5801a20cfad62 100644 --- a/file-write-date.lsp +++ b/files/file-write-date.lsp @@ -3,10 +3,10 @@ ;;;; Created: Tue Jan 6 06:01:35 2004 ;;;; Contains: Tests for FILE-WRITE-DATE -(in-package :cl-test) + (deftest file-write-date.1 - (let* ((pn "file-write-date.lsp") + (let* ((pn "sample-files/file-write-date.txt") (date (file-write-date pn)) (time (get-universal-time))) (or (null date) @@ -16,7 +16,7 @@ t) (deftest file-write-date.2 - (let* ((pn #p"file-write-date.lsp") + (let* ((pn #p"sample-files/file-write-date.txt") (date (file-write-date pn)) (time (get-universal-time))) (or (null date) @@ -26,7 +26,7 @@ t) (deftest file-write-date.3 - (let* ((pn (truename "file-write-date.lsp")) + (let* ((pn (truename "sample-files/file-write-date.txt")) (date (file-write-date pn)) (time (get-universal-time))) (or (null date) @@ -47,13 +47,13 @@ nil) (deftest file-write-date.5 - (length (multiple-value-list (file-write-date "file-write-date.lsp"))) + (length (multiple-value-list (file-write-date "sample-files/file-write-date.txt"))) 1) ;;; Specialized string tests (deftest file-write-date.6 - (let* ((str "file-write-date.lsp") + (let* ((str "sample-files/file-write-date.txt") (date (file-write-date str))) (do-special-strings (s str nil) @@ -70,7 +70,7 @@ t) (deftest file-write-date.error.2 - (signals-error (file-write-date "file-write-date.lsp" nil) + (signals-error (file-write-date "sample-files/file-write-date.txt" nil) program-error) t) diff --git a/files/load.lsp b/files/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..e6758a7305ff6f444f5e07663352314934f58620 --- /dev/null +++ b/files/load.lsp @@ -0,0 +1,20 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Thu Jan 1 11:59:35 2004 +;;;; Contains: Load tests of section 20, 'Files' + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "directory.lsp") + (load "probe-file.lsp") + (load "ensure-directories-exist.lsp") + (load "truename.lsp") + (load "file-author.lsp") + (load "file-write-date.lsp") + (load "rename-file.lsp") + (load "delete-file.lsp") + (load "file-error.lsp") +) diff --git a/probe-file.lsp b/files/probe-file.lsp similarity index 64% rename from probe-file.lsp rename to files/probe-file.lsp index f637d84844c3bb14e34e36b0f617115e395456e0..eedd387b46eec0c7fb8064172a2dbec38500540e 100644 --- a/probe-file.lsp +++ b/files/probe-file.lsp @@ -3,39 +3,37 @@ ;;;; Created: Mon Jan 5 20:46:29 2004 ;;;; Contains: Tests of PROBE-FILE -(in-package :cl-test) - (deftest probe-file.1 (probe-file #p"nonexistent") nil) (deftest probe-file.2 - (let ((s (open #p"probe-file.lsp" :direction :input))) + (let ((s (open #p"probe-file.txt" :direction :input))) (prog1 - (equalpt (truename #p"probe-file.lsp") + (equalpt (truename #p"probe-file.txt") (probe-file s)) (close s))) t) (deftest probe-file.3 - (let ((s (open #p"probe-file.lsp" :direction :input))) + (let ((s (open #p"probe-file.txt" :direction :input))) (close s) - (equalpt (truename #p"probe-file.lsp") + (equalpt (truename #p"probe-file.txt") (probe-file s))) t) (deftest probe-file.4 - (equalpt (truename #p"probe-file.lsp") - (probe-file "CLTEST:probe-file.lsp")) + (equalpt (truename #p"probe-file.txt") + (probe-file "CLTEST:probe-file.txt")) t) ;;; Specialized string tests (deftest probe-file.5 (do-special-strings - (str "probe-file.lsp" nil) + (str "probe-file.txt" nil) (let ((s (open str :direction :input))) - (assert (equalpt (truename #p"probe-file.lsp") (probe-file s))) + (assert (equalpt (truename #p"probe-file.txt") (probe-file s))) (close s))) nil) @@ -46,7 +44,7 @@ t) (deftest probe-file.error.2 - (signals-error (probe-file #p"probe-file.lsp" nil) program-error) + (signals-error (probe-file #p"probe-file.txt" nil) program-error) t) (deftest probe-file.error.3 diff --git a/rename-file.lsp b/files/rename-file.lsp similarity index 99% rename from rename-file.lsp rename to files/rename-file.lsp index 59a1f4c360ea588ae81b6d649c4cb8119f3b2718..f8e0d8a45b952498b4722f7cf6883cef73c66ddb 100644 --- a/rename-file.lsp +++ b/files/rename-file.lsp @@ -3,8 +3,6 @@ ;;;; Created: Thu Jan 8 06:22:53 2004 ;;;; Contains: Tests for RENAME-FILE -(in-package :cl-test) - (deftest rename-file.1 (let ((pn1 #p"file-to-be-renamed.txt") (pn2 #p"file-that-was-renamed.txt")) diff --git a/truename.lsp b/files/truename.lsp similarity index 86% rename from truename.lsp rename to files/truename.lsp index ca123499eb9505b7d9a86be5da4d4e48156cf43f..a9bb6a1ed4d96f5ae1c7ea24453d55d69f7e7cb2 100644 --- a/truename.lsp +++ b/files/truename.lsp @@ -3,10 +3,8 @@ ;;;; Created: Tue Jan 6 05:32:37 2004 ;;;; Contains: Tests of TRUENAME -(in-package :cl-test) - (deftest truename.1 - (let* ((pn #p"truename.lsp") + (let* ((pn #p"truename.txt") (tn (truename pn))) (values (notnot (pathnamep pn)) @@ -17,7 +15,7 @@ t nil t t) (deftest truename.2 - (let* ((name "truename.lsp") + (let* ((name "truename.txt") (pn (pathname name)) (tn (truename name))) (values @@ -29,7 +27,7 @@ t nil t t) (deftest truename.3 - (let* ((pn #p"truename.lsp")) + (let* ((pn #p"truename.txt")) (with-open-file (s pn :direction :input) (let ((tn (truename s))) @@ -42,7 +40,7 @@ t nil t t) (deftest truename.4 - (let* ((pn #p"truename.lsp")) + (let* ((pn #p"truename.txt")) (let ((s (open pn :direction :input))) (close s) (let ((tn (truename s))) @@ -73,8 +71,8 @@ (deftest truename.6 (do-special-strings - (s "truename.lsp" nil) - (assert (equalp (truename s) (truename "truename.lsp")))) + (s "truename.txt" nil) + (assert (equalp (truename s) (truename "truename.txt")))) nil) ;;; Error tests @@ -84,7 +82,7 @@ t) (deftest truename.error.2 - (signals-error (truename "truename.lsp" nil) program-error) + (signals-error (truename "truename.txt" nil) program-error) t) (deftest truename.error.3 @@ -96,8 +94,10 @@ t t) (deftest truename.error.5 - (signals-error-always (truename (logical-pathname "CLTESTROOT:nonexistent")) file-error) - t t) + (signals-error-always + (truename + (logical-pathname "CLTESTROOT:nonexistent")) + file-error) t t) (deftest truename.error.6 (signals-error-always diff --git a/format.lsp b/format.lsp deleted file mode 100644 index 00f770675ed65476de495f43e44ecb22a14b2300..0000000000000000000000000000000000000000 --- a/format.lsp +++ /dev/null @@ -1,15 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Mon Feb 23 05:08:17 2004 -;;;; Contains: Tests of FORMAT - -(in-package :cl-test) - - -(defun def-format-test (name args result) - `(deftest ,name - (equalt - (with-standard-io-syntax - (with-output-to-string (s) (format s ,@args))) - result) - t)) diff --git a/gclload1.lsp b/gclload1.lsp index a362390d587e3900da32a2155c8586bb67acaad8..fef7cef38d4e258a69f5fe3773c7e467117ff44c 100644 --- a/gclload1.lsp +++ b/gclload1.lsp @@ -1,8 +1,10 @@ -#+:ecl (si::package-lock (find-package "COMMON-LISP") nil) +#+ecl (si::package-lock (find-package "COMMON-LISP") nil) +#+ecl (compile nil '(lambda () nil)) +#+ecl (setq c:*suppress-compiler-warnings* t + c:*suppress-compiler-notes* t + c:*suppress-compiler-messages* t) #+:armedbear (require 'pprint) - #+cmu (setq ext:*gc-verbose* nil) - #+gcl (setq compiler:*suppress-compiler-notes* t compiler:*suppress-compiler-warnings* t compiler:*compile-verbose* nil @@ -10,32 +12,31 @@ #+lispworks (setq compiler::*compiler-warnings* nil) #+lispworks (make-echo-stream *standard-input* *standard-output*) - -#+ecl (compile nil '(lambda () nil)) - -#+ecl (setq c:*suppress-compiler-warnings* t c:*suppress-compiler-notes* t) - #+clisp (setq custom::*warn-on-floating-point-contagion* nil) +;;; Configure logical pathnames +(setf (logical-pathname-translations "ansi-tests") + `(("aux;*.*" ,(merge-pathnames + "auxiliary/" + (make-pathname + :directory + (pathname-directory *load-truename*)))))) + (let (*load-verbose* *load-print* *compile-verbose* *compile-print*) (load "compile-and-load.lsp")) (let (*load-verbose* *load-print* *compile-verbose* *compile-print*) (load "rt-package.lsp") (compile-and-load "rt.lsp") - ;; (unless (probe-file "rt.o") (compile-file "rt.lsp")) - ;; (load "rt.o") (load "cl-test-package.lsp") (in-package :cl-test) - (compile-and-load "ansi-aux-macros.lsp") + (compile-and-load "ANSI-TESTS:AUX;ansi-aux-macros.lsp") (handler-bind #-sbcl () #+sbcl ((sb-ext:code-deletion-note #'muffle-warning)) (load "universe.lsp")) - (compile-and-load "random-aux.lsp") - (compile-and-load "ansi-aux.lsp") - ;; (unless (probe-file "ansi-aux.o") (compile-file "ansi-aux.lsp")) - ;; (load "ansi-aux.o") + (compile-and-load "ANSI-TESTS:AUX;random-aux.lsp") + (compile-and-load "ANSI-TESTS:AUX;ansi-aux.lsp") (load "cl-symbol-names.lsp") (load "notes.lsp")) diff --git a/gclload2.lsp b/gclload2.lsp index 5e86ecbe63723128d9eb60558ba7f0c9fadf2e0b..ef47b630ff5174ea51018d77e0d650306e350508 100644 --- a/gclload2.lsp +++ b/gclload2.lsp @@ -1,75 +1,76 @@ ;;; Load test files +(in-package :cl-test) ;;; Tests of symbols -(load "load-symbols.lsp") +(load "symbols/load.lsp") ;;; Tests of evaluation and compilation -(load "load-eval-and-compile.lsp") +(load "eval-and-compile/load.lsp") ;;; Tests of data and control flow -(load "load-data-and-control-flow.lsp") +(load "data-and-control-flow/load.lsp") ;;; Tests of iteration forms -(load "load-iteration.lsp") +(load "iteration/load.lsp") ;;; Tests of objects -(load "load-objects.lsp") +(load "objects/load.lsp") ;;; Tests of conditions -(load "load-conditions.lsp") +(load "conditions/load.lsp") ;;; Tests of conses -(load "load-cons.lsp") +(load "cons/load.lsp") ;;; Tests on arrays -(load "load-arrays.lsp") +(load "arrays/load.lsp") ;;; Tests of hash tables -(load "load-hash-tables.lsp") +(load "hash-tables/load.lsp") ;;; Tests of packages -(load "load-packages.lsp") +(load "packages/load.lsp") ;;; Tests of numbers (section 12) -(load "load-numbers.lsp") +(load "numbers/load.lsp") ;;; Tests of sequences -(load "load-sequences.lsp") +(load "sequences/load.lsp") ;;; Tests of structures -(load "load-structures.lsp") +(load "structures/load.lsp") ;;; Tests of types and classes -(load "load-types-and-class.lsp") +(load "types-and-classes/load.lsp") ;;; Tests of strings -(load "load-strings.lsp") +(load "strings/load.lsp") ;;; Tests for character functions -(load "load-characters.lsp") +(load "characters/load.lsp") ;;; Tests of pathnames -(load "load-pathnames.lsp") +(load "pathnames/load.lsp") ;;; Tests of file operations -(load "load-files.lsp") +(load "files/load.lsp") ;;; Tests of streams -(load "load-streams.lsp") +(load "streams/load.lsp") ;;; Tests of the printer -(load "load-printer.lsp") +(load "printer/load.lsp") ;;; Tests of the reader -(load "load-reader.lsp") +(load "reader/load.lsp") ;;; Tests of system construction -(load "load-system-construction.lsp") +(load "system-construction/load.lsp") ;;; Tests of environment -(load "load-environment.lsp") +(load "environment/load.lsp") ;;; Miscellaneous tests, mostly tests that failed in random testing ;;; on various implementations -(load "load-misc.lsp") +(load "misc/load.lsp") diff --git a/clrhash.lsp b/hash-tables/clrhash.lsp similarity index 98% rename from clrhash.lsp rename to hash-tables/clrhash.lsp index 75e778139bf03c9173dff98789c13b9476d80ce9..90142d3c32e7f0eef865a2580c9288ae9ac75898 100644 --- a/clrhash.lsp +++ b/hash-tables/clrhash.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 09:33:40 2003 ;;;; Contains: Tests of CLRHASH -(in-package :cl-test) + (deftest clrhash.1 (let ((table (make-hash-table))) diff --git a/gethash.lsp b/hash-tables/gethash.lsp similarity index 99% rename from gethash.lsp rename to hash-tables/gethash.lsp index beab51dbcef089f0ffa1ba45605c40248677adb0..0a6d262126d7a3c59a2151735534dbc9d4abb9eb 100644 --- a/gethash.lsp +++ b/hash-tables/gethash.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 06:05:21 2003 ;;;; Contains: Tests of GETHASH -(in-package :cl-test) + ;;; Most testing of GETHASH is in test-hash-table-1 in hash-table-aux.lsp diff --git a/hash-table-count.lsp b/hash-tables/hash-table-count.lsp similarity index 98% rename from hash-table-count.lsp rename to hash-tables/hash-table-count.lsp index 53f12af09a18cd8edf03a50baf9b6b94af318db9..6bc3a9ed6408c6bbe022e599bfeff405a8bf9e84 100644 --- a/hash-table-count.lsp +++ b/hash-tables/hash-table-count.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 05:14:25 2003 ;;;; Contains: Tests of HASH-TABLE-COUNT -(in-package :cl-test) + (deftest hash-table-count.1 (hash-table-count (make-hash-table)) diff --git a/hash-table-p.lsp b/hash-tables/hash-table-p.lsp similarity index 97% rename from hash-table-p.lsp rename to hash-tables/hash-table-p.lsp index de3b9492c052ecb1033ca2566bc65e2b3dfefa3e..d63e24313a46ea44d83a70a06eb17ba690a7828b 100644 --- a/hash-table-p.lsp +++ b/hash-tables/hash-table-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Sep 16 21:58:37 2003 ;;;; Contains: Tests for HASH-TABLE-P -(in-package :cl-test) + (deftest hash-table-p.1 (loop for e in '(nil t 1 10.0 (a b c) #(a b c) #*1011 diff --git a/hash-table-rehash-size.lsp b/hash-tables/hash-table-rehash-size.lsp similarity index 98% rename from hash-table-rehash-size.lsp rename to hash-tables/hash-table-rehash-size.lsp index 9c4f22cbbb5ec1a7acb1b53f48edc79363c30b7d..a8c4893ebdc8473b1496b168dc1be8e513b6524e 100644 --- a/hash-table-rehash-size.lsp +++ b/hash-tables/hash-table-rehash-size.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 05:47:24 2003 ;;;; Contains: Tests for HASH-TABLE-REHASH-SIZE -(in-package :cl-test) + (deftest hash-table-rehash-size.1 (typep* (hash-table-rehash-size (make-hash-table)) diff --git a/hash-table-rehash-threshold.lsp b/hash-tables/hash-table-rehash-threshold.lsp similarity index 98% rename from hash-table-rehash-threshold.lsp rename to hash-tables/hash-table-rehash-threshold.lsp index 87a09aa9ea0b1f7bd7ac98714da5a051bbf1ec1e..d6efd82ac2dd3299cc7f87d2cbeb081868c44a87 100644 --- a/hash-table-rehash-threshold.lsp +++ b/hash-tables/hash-table-rehash-threshold.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 05:52:52 2003 ;;;; Contains: Tests of HASH-TABLE-REHASH-THRESHOLD -(in-package :cl-test) + (deftest hash-table-rehash-threshold.1 (typep* (hash-table-rehash-threshold (make-hash-table)) diff --git a/hash-table-size.lsp b/hash-tables/hash-table-size.lsp similarity index 95% rename from hash-table-size.lsp rename to hash-tables/hash-table-size.lsp index 9ce1a55ae813a581c76af6972c9d086e33fc5e6e..a667b61f4c7e6226ed3d4749e7216bea4e16c9ee 100644 --- a/hash-table-size.lsp +++ b/hash-tables/hash-table-size.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 05:23:45 2003 ;;;; Contains: Tests for HASH-TABLE-SIZE -(in-package :cl-test) + (deftest hash-table-size.error.1 (signals-error (hash-table-size) program-error) diff --git a/hash-table-test.lsp b/hash-tables/hash-table-test.lsp similarity index 98% rename from hash-table-test.lsp rename to hash-tables/hash-table-test.lsp index ab6b082c50766ac276dd0db51af3af8072b5c289..384d8bcc84acbba5c43d77e9416f13a9afe86d7d 100644 --- a/hash-table-test.lsp +++ b/hash-tables/hash-table-test.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 05:56:22 2003 ;;;; Contains: Tests for HASH-TABLE-TEST -(in-package :cl-test) + (deftest hash-table-test.1 (hash-table-test (make-hash-table)) diff --git a/hash-table.lsp b/hash-tables/hash-table.lsp similarity index 97% rename from hash-table.lsp rename to hash-tables/hash-table.lsp index e87cb7366c6dd0820bee67fcd0aa9a117dccf290..4b6ca5509b709f3d2daec7fd45f0f59cb8da4331 100644 --- a/hash-table.lsp +++ b/hash-tables/hash-table.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 21:30:42 2003 ;;;; Contains: Tests of HASH-TABLE and related interface -(in-package :cl-test) + (deftest hash-table.1 (notnot-mv (find-class 'hash-table)) diff --git a/hash-tables/load.lsp b/hash-tables/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..b5780d6d975fb5714f35441a76e478efc94a42eb --- /dev/null +++ b/hash-tables/load.lsp @@ -0,0 +1,22 @@ +(compile-and-load "ANSI-TESTS:AUX;hash-table-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "hash-table.lsp") + (load "make-hash-table.lsp") + (load "hash-table-p.lsp") + (load "hash-table-count.lsp") + (load "hash-table-size.lsp") + (load "hash-table-rehash-size.lsp") + (load "hash-table-rehash-threshold.lsp") + (load "hash-table-test.lsp") + (load "gethash.lsp") + (load "remhash.lsp") + (load "clrhash.lsp") + (load "maphash.lsp") + (load "with-hash-table-iterator.lsp") + (load "sxhash.lsp") +) diff --git a/make-hash-table.lsp b/hash-tables/make-hash-table.lsp similarity index 99% rename from make-hash-table.lsp rename to hash-tables/make-hash-table.lsp index 8b0e0bc0c1c9d550f91ed5fa1f9bf8a3ed66975f..d50dcc2d4bf35a2c206f543629852d72c76d5adc 100644 --- a/make-hash-table.lsp +++ b/hash-tables/make-hash-table.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jan 26 21:36:33 2003 ;;;; Contains: Tests for MAKE-HASH-TABLE -(in-package :cl-test) + ;; (eval-when (:load-toplevel :compile-toplevel :execute) ;; (compile-and-load "hash-table-aux.lsp")) diff --git a/maphash.lsp b/hash-tables/maphash.lsp similarity index 99% rename from maphash.lsp rename to hash-tables/maphash.lsp index 0666a26fa198e45e2041432143e3445b5e3d4ac6..a6240b662310befe41e857cfda8e89052cf637d5 100644 --- a/maphash.lsp +++ b/hash-tables/maphash.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 09:36:58 2003 ;;;; Contains: Test of MAPHASH -(in-package :cl-test) + (deftest maphash.1 (let ((table (make-hash-table))) diff --git a/remhash.lsp b/hash-tables/remhash.lsp similarity index 98% rename from remhash.lsp rename to hash-tables/remhash.lsp index 24492ea7e678cb7b4f9eb518a8e34c6ac049f463..39c6d2b99aca98cba5140d508ed5588d533d3fe2 100644 --- a/remhash.lsp +++ b/hash-tables/remhash.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 08:58:06 2003 ;;;; Contains: Tests of REMHASH -(in-package :cl-test) + (deftest remhash.1 (let ((table (make-hash-table))) diff --git a/sxhash.lsp b/hash-tables/sxhash.lsp similarity index 99% rename from sxhash.lsp rename to hash-tables/sxhash.lsp index 166ba7242c160a448d901c9e28c267ce1c0146b7..b04aec1b474671356c837d580e9744aff9091666 100644 --- a/sxhash.lsp +++ b/hash-tables/sxhash.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 21:18:12 2003 ;;;; Contains: Tests of SXHASH -(in-package :cl-test) + (deftest sxhash.1 (check-predicate #'(lambda (x) (typep (sxhash x) '(and unsigned-byte fixnum)))) diff --git a/with-hash-table-iterator.lsp b/hash-tables/with-hash-table-iterator.lsp similarity index 99% rename from with-hash-table-iterator.lsp rename to hash-tables/with-hash-table-iterator.lsp index 3787d9028cc0cad4d8d14c54023c84e03a481d56..f2f4b49211174a9c9f30084501d03c2310f92438 100644 --- a/with-hash-table-iterator.lsp +++ b/hash-tables/with-hash-table-iterator.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Nov 28 20:08:43 2003 ;;;; Contains: Tests of WITH-HASH-TABLE-ITERATOR -(in-package :cl-test) + (deftest with-hash-table-iterator.1 (with-hash-table-iterator (x (make-hash-table))) diff --git a/host-namestring.lsp b/host-namestring.lsp deleted file mode 100644 index 221a01ae2fb6512addb0d2fc840842eb6357b567..0000000000000000000000000000000000000000 --- a/host-namestring.lsp +++ /dev/null @@ -1,49 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Sun Sep 12 06:22:40 2004 -;;;; Contains: Tests of HOST-NAMESTRING - -(in-package :cl-test) - -(deftest host-namestring.1 - (let* ((vals (multiple-value-list - (host-namestring "host-namestring.lsp"))) - (s (first vals))) - (if (and (null (cdr vals)) - (or (null s) - (stringp s) - ;; (equal (host-namestring s) s) - )) - :good - vals)) - :good) - -(deftest host-namestring.2 - (do-special-strings - (s "host-namestring.lsp" nil) - (let ((ns (host-namestring s))) - (when ns - (assert (stringp ns)) - ;; (assert (string= (host-namestring ns) ns)) - ))) - nil) - -(deftest host-namestring.3 - (let* ((name "host-namestring.lsp") - (pn (merge-pathnames (pathname name))) - (name2 (with-open-file (s pn :direction :input) - (host-namestring s))) - (name3 (host-namestring pn))) - (or (equalt name2 name3) (list name2 name3))) - t) - -;;; Error tests - -(deftest host-namestring.error.1 - (signals-error (host-namestring) program-error) - t) - -(deftest host-namestring.error.2 - (signals-error (host-namestring "host-namestring.lsp" nil) program-error) - t) - diff --git a/input-stream-p.lsp b/input-stream-p.lsp deleted file mode 100644 index bddc96a72365661c2c833a0c8dd0654f95a73b75..0000000000000000000000000000000000000000 --- a/input-stream-p.lsp +++ /dev/null @@ -1,40 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Tue Jan 13 19:39:27 2004 -;;;; Contains: Tests for INPUT-STREAM-P - -(in-package :cl-test) - -(deftest input-stream-p.1 - (notnot-mv (input-stream-p *standard-input*)) - t) - -(deftest input-stream-p.2 - (notnot-mv (input-stream-p *terminal-io*)) - t) - -(deftest input-stream-p.3 - (with-open-file (s "input-stream-p.lsp" :direction :input) - (notnot-mv (input-stream-p s))) - t) - -(deftest input-stream-p.4 - (with-open-file (s "foo.txt" :direction :output - :if-exists :supersede) - (input-stream-p s)) - nil) - -;;; Error tests - -(deftest input-stream-p.error.1 - (signals-error (input-stream-p) program-error) - t) - -(deftest input-stream-p.error.2 - (signals-error (input-stream-p *standard-input* nil) - program-error) - t) - -(deftest input-stream-p.error.3 - (check-type-error #'input-stream-p #'streamp) - nil) diff --git a/do.lsp b/iteration/do.lsp similarity index 99% rename from do.lsp rename to iteration/do.lsp index 545516412736f4ece748ae33fdc7d618806d8af8..eabf5c6d7fef4171f20e5dc55d3c155274add90a 100644 --- a/do.lsp +++ b/iteration/do.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 8 07:25:18 2005 ;;;; Contains: Tests of DO -(in-package :cl-test) + (deftest do.1 diff --git a/dolist.lsp b/iteration/dolist.lsp similarity index 99% rename from dolist.lsp rename to iteration/dolist.lsp index 9d1528623dc7e1c3b8874c6d9ae11e5faa089693..733d2a4ba571618dd27ebcb6040bad6d9cf3972b 100644 --- a/dolist.lsp +++ b/iteration/dolist.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 8 07:26:48 2005 ;;;; Contains: Tests of DOLIST -(in-package :cl-test) + (deftest dolist.1 (let ((count 0)) diff --git a/dostar.lsp b/iteration/dostar.lsp similarity index 99% rename from dostar.lsp rename to iteration/dostar.lsp index 883cf56add3b096ae21d835755afe16106417626..9681ba856ed329907647a79c1b2c4433e35b05ff 100644 --- a/dostar.lsp +++ b/iteration/dostar.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 8 07:26:22 2005 ;;;; Contains: Tests of DO* -(in-package :cl-test) + (deftest do*.1 diff --git a/dotimes.lsp b/iteration/dotimes.lsp similarity index 99% rename from dotimes.lsp rename to iteration/dotimes.lsp index 8d606a5a6f6662d716581fda54608ba40a2e22ee..d689083039868a5e95a3c626be82f92139411647 100644 --- a/dotimes.lsp +++ b/iteration/dotimes.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Jan 8 07:27:15 2005 ;;;; Contains: Tests of DOTIMES -(in-package :cl-test) + (deftest dotimes.1 diff --git a/iteration/load.lsp b/iteration/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..fa303c16256aef1029649ad2fc447b944ccd4003 --- /dev/null +++ b/iteration/load.lsp @@ -0,0 +1,30 @@ +;;; Tests of iteration forms + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "do.lsp") + (load "dostar.lsp") + (load "dolist.lsp") + (load "dotimes.lsp") + (load "loop.lsp") + (load "loop1.lsp") + (load "loop2.lsp") + (load "loop3.lsp") + (load "loop4.lsp") + (load "loop5.lsp") + (load "loop6.lsp") + (load "loop7.lsp") + (load "loop8.lsp") + (load "loop9.lsp") + (load "loop10.lsp") + (load "loop11.lsp") + (load "loop12.lsp") + (load "loop13.lsp") + (load "loop14.lsp") + (load "loop15.lsp") + (load "loop16.lsp") + (load "loop17.lsp") +) diff --git a/loop.lsp b/iteration/loop.lsp similarity index 98% rename from loop.lsp rename to iteration/loop.lsp index a2df304ba491afecca9e163d3f95d3a171c3262d..0f604a62b6c8e9ca667f035fd1013b087cc649fe 100644 --- a/loop.lsp +++ b/iteration/loop.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 25 18:48:59 2002 ;;;; Contains: Tests of LOOP -(in-package :cl-test) + ;;; Simple loops (deftest sloop.1 diff --git a/loop1.lsp b/iteration/loop1.lsp similarity index 99% rename from loop1.lsp rename to iteration/loop1.lsp index 2f30a4264c8a71231935e2ebae333711467ee0f6..26457fe308b0da62c4e873949bfa20dd3d40ae12 100644 --- a/loop1.lsp +++ b/iteration/loop1.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Oct 25 19:07:19 2002 ;;;; Contains: Tests of extended loop, part 1 -(in-package :cl-test) + ;;; Tests of variable initialization and stepping clauses diff --git a/loop10.lsp b/iteration/loop10.lsp similarity index 99% rename from loop10.lsp rename to iteration/loop10.lsp index 8052c5f3effa526ce72ccd5df3d87c0820fcad59..06dc3699a9b23b3b7e6bd3cf3058872896293e12 100644 --- a/loop10.lsp +++ b/iteration/loop10.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Nov 16 09:07:02 2002 ;;;; Contains: Tests of LOOP numeric value accumulation clauses -(in-package :cl-test) + ;; Tests of COUNT, COUNTING diff --git a/loop11.lsp b/iteration/loop11.lsp similarity index 99% rename from loop11.lsp rename to iteration/loop11.lsp index 658f44c4a5fcc51aae79846911e35df5e071026e..f1b486f24ac9908b3553f8a5f3ac632899a8ad87 100644 --- a/loop11.lsp +++ b/iteration/loop11.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Nov 16 21:39:33 2002 ;;;; Contains: Tests for loop termination clauses REPEAT, WHILE and UNTIL -(in-package :cl-test) + ;;; Tests of REPEAT diff --git a/loop12.lsp b/iteration/loop12.lsp similarity index 99% rename from loop12.lsp rename to iteration/loop12.lsp index 374cacb52eedbbb62b9e9bfadf00a3775346f63f..c07d8cd999ce0815d5b6122ee8f416c0fa8e5ced 100644 --- a/loop12.lsp +++ b/iteration/loop12.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Nov 17 08:47:43 2002 ;;;; Contains: Tests for ALWAYS, NEVER, THEREIS -(in-package :cl-test) + ;;; Tests of ALWAYS clauses diff --git a/loop13.lsp b/iteration/loop13.lsp similarity index 99% rename from loop13.lsp rename to iteration/loop13.lsp index fe66445734a247d1d0c2313581b52dd5fe8ae4c1..e8fa7fcf10199315386203f7f28782386ab2836b 100644 --- a/loop13.lsp +++ b/iteration/loop13.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Nov 17 12:37:45 2002 ;;;; Contains: Tests of DO, DOING, RETURN in LOOP. Tests of NAMED loops -(in-package :cl-test) + (deftest loop.13.1 (loop do (return 10)) diff --git a/loop14.lsp b/iteration/loop14.lsp similarity index 99% rename from loop14.lsp rename to iteration/loop14.lsp index 46d61bb109f93475022b66b63797ad8dd9f2125c..25c80d79051eb8aec161c9cc24bb0620bb6bbe89 100644 --- a/loop14.lsp +++ b/iteration/loop14.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Nov 20 06:33:21 2002 ;;;; Contains: Tests of LOOP conditional execution clauses -(in-package :cl-test) + (deftest loop.14.1 (loop for x from 1 to 6 diff --git a/loop15.lsp b/iteration/loop15.lsp similarity index 99% rename from loop15.lsp rename to iteration/loop15.lsp index 8e23db5714491cd42e9b7e87711c78eb8f18e581..96b5f891243013e24bdeea8569497cfe854e133f 100644 --- a/loop15.lsp +++ b/iteration/loop15.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Nov 21 07:08:21 2002 ;;;; Contains: Tests that keywords can be loop keywords -(in-package :cl-test) + ;;; Tests of loop keywords diff --git a/loop16.lsp b/iteration/loop16.lsp similarity index 99% rename from loop16.lsp rename to iteration/loop16.lsp index ba8d1ff973959933562a0280bce844b7c1980176..bad8eedc057d72d99b76a098a682ad6e159a1c55 100644 --- a/loop16.lsp +++ b/iteration/loop16.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Nov 21 09:46:27 2002 ;;;; Contains: Tests that uninterned symbols can be loop keywords -(in-package :cl-test) + (deftest loop.16.30 diff --git a/loop17.lsp b/iteration/loop17.lsp similarity index 99% rename from loop17.lsp rename to iteration/loop17.lsp index 68ce53ed5417461c236ba60e1f2be76aafdcbf7f..782fe04330de7e2ab69fa2b3cc07cfa6972e03b1 100644 --- a/loop17.lsp +++ b/iteration/loop17.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Nov 21 09:48:38 2002 ;;;; Contains: Miscellaneous loop tests -(in-package :cl-test) + ;;; Initially and finally take multiple forms, ;;; and execute them in the right order diff --git a/loop2.lsp b/iteration/loop2.lsp similarity index 99% rename from loop2.lsp rename to iteration/loop2.lsp index cb7d102d20034adea91c651d8e665f4aa518377c..795e771b86b491dacb40e0db847917b4daab3a53 100644 --- a/loop2.lsp +++ b/iteration/loop2.lsp @@ -4,7 +4,7 @@ ;;;; Contains: Tests of the FOR-AS-IN-LIST loop iteration control form, ;;;; and of destructuring in loop forms -(in-package :cl-test) + (deftest loop.2.1 (loop for x in '(1 2 3) sum x) diff --git a/loop3.lsp b/iteration/loop3.lsp similarity index 99% rename from loop3.lsp rename to iteration/loop3.lsp index d2dcba2c8c13ab14520729b92e50d11e67fbc463..f442dd70ab49619cae187d90be557afba9aafedc 100644 --- a/loop3.lsp +++ b/iteration/loop3.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Oct 27 08:36:36 2002 ;;;; Contains: Tests of FOR-ON-AS-LIST iteration control in LOOP -(in-package :cl-test) + (deftest loop.3.1 (loop for x on '(1 2 3) sum (car x)) diff --git a/loop4.lsp b/iteration/loop4.lsp similarity index 98% rename from loop4.lsp rename to iteration/loop4.lsp index 8e656b7a0ca8c86b6f45efb653c05719e51f9556..06ce79b14702f46d0e7c5e42ea0f6a489781dce1 100644 --- a/loop4.lsp +++ b/iteration/loop4.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Oct 27 22:46:39 2002 ;;;; Contains: Tests for LOOP FOR-AS-EQUAL-THEN -(in-package :cl-test) + (deftest loop.4.1 (loop diff --git a/loop5.lsp b/iteration/loop5.lsp similarity index 99% rename from loop5.lsp rename to iteration/loop5.lsp index 004a94fad07379046525b02ee5cce37a76774d50..60c2ee7d90bdea8bb0ca944b612112d4bea04eb1 100644 --- a/loop5.lsp +++ b/iteration/loop5.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Nov 2 13:52:50 2002 ;;;; Contains: Tests of LOOP clause FOR-AS-ACROSS -(in-package :cl-test) + (deftest loop.5.1 (let ((x "abcd")) (loop for e across x collect e)) diff --git a/loop6.lsp b/iteration/loop6.lsp similarity index 99% rename from loop6.lsp rename to iteration/loop6.lsp index 422e102b53b8200df5fcca5059c3bfe14fc6a685..fc144890d6932b8eceef39ab888d80ca86027d96 100644 --- a/loop6.lsp +++ b/iteration/loop6.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Nov 10 21:13:04 2002 ;;;; Contains: Tests for LOOP-AS-HASH forms -(in-package :cl-test) + (defparameter *loop.6.alist* '((a . 1) (b . 2) (c . 3))) diff --git a/loop7.lsp b/iteration/loop7.lsp similarity index 99% rename from loop7.lsp rename to iteration/loop7.lsp index 0535f4363a2a95260d33920e5606bc60968a9df2..2c0f21823b98a474b6285fd2f01be1f866cd4398 100644 --- a/loop7.lsp +++ b/iteration/loop7.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Nov 11 21:40:05 2002 ;;;; Contains: Tests for FOR-AS-PACKAGE clause for LOOP -(in-package :cl-test) + (defpackage "LOOP.CL-TEST.1" (:use) diff --git a/loop8.lsp b/iteration/loop8.lsp similarity index 99% rename from loop8.lsp rename to iteration/loop8.lsp index 697392b7054b0f0032e54c9f5f03dacdb1eb92fa..eb87de1736beae4ec1a03772129617e36507ebf3 100644 --- a/loop8.lsp +++ b/iteration/loop8.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Nov 12 06:30:14 2002 ;;;; Contains: Tests of LOOP local variable initialization -(in-package :cl-test) + (deftest loop.8.1 (loop with x = 1 do (return x)) diff --git a/loop9.lsp b/iteration/loop9.lsp similarity index 99% rename from loop9.lsp rename to iteration/loop9.lsp index 6cf77159ddf7c424e158e8f6e713f0db7cd50efc..5da18d4cdb1b46cb8763d1ef215c61763ea01e26 100644 --- a/loop9.lsp +++ b/iteration/loop9.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Nov 14 06:25:21 2002 ;;;; Contains: Tests for loop list accumulation clauses -(in-package :cl-test) + ;;; Tests of COLLECT, COLLECTING diff --git a/load-arrays.lsp b/load-arrays.lsp deleted file mode 100644 index 897a9af8109a0484654fdaa7e5d4e81b45c60194..0000000000000000000000000000000000000000 --- a/load-arrays.lsp +++ /dev/null @@ -1,48 +0,0 @@ -;;; Tests on arrays -(compile-and-load "array-aux.lsp") -(load "aref.lsp") -(load "array.lsp") -(load "array-t.lsp") -(load "array-as-class.lsp") -(load "simple-array.lsp") -(load "simple-array-t.lsp") -(load "bit-vector.lsp") -(load "simple-bit-vector.lsp") -(load "make-array.lsp") -(load "adjust-array.lsp") -(load "adjustable-array-p.lsp") -(load "array-displacement.lsp") -(load "array-dimension.lsp") -(load "array-dimensions.lsp") -(load "array-element-type.lsp") -(load "array-in-bounds-p.lsp") -(load "array-misc.lsp") -(load "array-rank.lsp") -(load "array-row-major-index.lsp") -(load "array-total-size.lsp") -(load "arrayp.lsp") -(load "fill-pointer.lsp") -(load "row-major-aref.lsp") -(load "simple-vector-p.lsp") -(load "svref.lsp") -(load "upgraded-array-element-type.lsp") -(load "vector.lsp") -(load "vector-pop.lsp") -(load "vector-push.lsp") -(load "vector-push-extend.lsp") -(load "vectorp.lsp") -(load "bit.lsp") -(load "sbit.lsp") -(load "bit-and.lsp") -(load "bit-andc1.lsp") -(load "bit-andc2.lsp") -(load "bit-eqv.lsp") -(load "bit-ior.lsp") -(load "bit-nand.lsp") -(load "bit-nor.lsp") -(load "bit-orc1.lsp") -(load "bit-orc2.lsp") -(load "bit-xor.lsp") -(load "bit-not.lsp") -(load "bit-vector-p.lsp") -(load "simple-bit-vector-p.lsp") diff --git a/load-characters.lsp b/load-characters.lsp deleted file mode 100644 index 3fcdb50ddfcb924e8bdae4d31d8fc9b8b71d20a6..0000000000000000000000000000000000000000 --- a/load-characters.lsp +++ /dev/null @@ -1,11 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Thu Jun 23 20:12:44 2005 -;;;; Contains: Load character tests - -(in-package :cl-test) - -(compile-and-load "char-aux.lsp") -(load "character.lsp") -(load "char-compare.lsp") -(load "name-char.lsp") diff --git a/load-conditions.lsp b/load-conditions.lsp deleted file mode 100644 index 9061e22e47a1342936e16a49243cbe292f9380bf..0000000000000000000000000000000000000000 --- a/load-conditions.lsp +++ /dev/null @@ -1,26 +0,0 @@ -;;; Tests of conditions -(compile-and-load "types-aux.lsp") -(compile-and-load "define-condition-aux.lsp") -(load "condition.lsp") -(load "cell-error-name.lsp") -(load "assert.lsp") -(load "error.lsp") -(load "cerror.lsp") -(load "check-type.lsp") -(load "warn.lsp") -(load "invoke-debugger.lsp") -(load "handler-bind.lsp") -(load "handler-case.lsp") -(load "ignore-errors.lsp") -(load "define-condition.lsp") -(load "compute-restarts.lsp") -(load "restart-bind.lsp") -(load "restart-case.lsp") -(load "with-condition-restarts.lsp") -(load "with-simple-restart.lsp") -(load "abort.lsp") -(load "muffle-warning.lsp") -(load "continue.lsp") -(load "store-value.lsp") -(load "use-value.lsp") -(load "make-condition.lsp") diff --git a/load-cons.lsp b/load-cons.lsp deleted file mode 100644 index ea366af746d5edbbed2e3116b6f41b9e626511cd..0000000000000000000000000000000000000000 --- a/load-cons.lsp +++ /dev/null @@ -1,82 +0,0 @@ -;;; Tests of conses - -;;; (compile-and-load "cons-aux.lsp") - -(load "cons.lsp") -(load "consp.lsp") -(load "atom.lsp") -(load "cxr.lsp") -(load "rplaca.lsp") -(load "rplacd.lsp") -(load "copy-tree.lsp") -(load "sublis.lsp") -(load "nsublis.lsp") -(load "subst.lsp") -(load "subst-if.lsp") -(load "subst-if-not.lsp") -(load "nsubst.lsp") -(load "nsubst-if.lsp") -(load "nsubst-if-not.lsp") -(load "tree-equal.lsp") -(load "copy-list.lsp") -(load "list.lsp") -(load "list-length.lsp") -(load "listp.lsp") -(load "make-list.lsp") -(load "push.lsp") -(load "pop.lsp") -(load "pushnew.lsp") -(load "adjoin.lsp") -(load "nth.lsp") -(load "endp.lsp") -(load "nconc.lsp") -(load "append.lsp") -(load "revappend.lsp") -(load "nreconc.lsp") -(load "butlast.lsp") -(load "nbutlast.lsp") -(load "last.lsp") -(load "ldiff.lsp") -(load "tailp.lsp") -(load "nthcdr.lsp") -(load "rest.lsp") -(load "member.lsp") -(load "member-if.lsp") -(load "member-if-not.lsp") - -(load "mapc.lsp") -(load "mapcar.lsp") -(load "mapcan.lsp") -(load "mapl.lsp") -(load "maplist.lsp") -(load "mapcon.lsp") - -(load "acons.lsp") -(load "assoc.lsp") -(load "assoc-if.lsp") -(load "assoc-if-not.lsp") -(load "rassoc.lsp") -(load "rassoc-if.lsp") -(load "rassoc-if-not.lsp") -(load "copy-alist.lsp") -(load "pairlis.lsp") - -(load "get-properties.lsp") -(load "getf.lsp") -(load "remf.lsp") - -(load "intersection.lsp") -(load "nintersection.lsp") -(load "union.lsp") -(load "nunion.lsp") -(load "set-difference.lsp") -(load "nset-difference.lsp") -(load "set-exclusive-or.lsp") -(load "nset-exclusive-or.lsp") -(load "subsetp.lsp") - -;;; Misc. stuff that should be moved elsewhere -(load "cons-test-01.lsp") -(load "cons-test-03.lsp") -(load "cons-test-05.lsp") - diff --git a/load-data-and-control-flow.lsp b/load-data-and-control-flow.lsp deleted file mode 100644 index f5cab57694e68d17582b3351609ded015065d3d9..0000000000000000000000000000000000000000 --- a/load-data-and-control-flow.lsp +++ /dev/null @@ -1,79 +0,0 @@ -;;; Tests of data and control flow - -(load "data-and-control-flow.lsp") -(load "places.lsp") -(load "psetq.lsp") -(load "psetf.lsp") -(load "shiftf.lsp") -(load "rotatef.lsp") -(load "return.lsp") -(load "return-from.lsp") -(load "defsetf.lsp") -(load "define-setf-expander.lsp") - -(load "and.lsp") -(load "apply.lsp") -(load "block.lsp") -(load "call-arguments-limit.lsp") -(load "case.lsp") -(load "catch.lsp") -(load "ccase.lsp") -(load "compiled-function-p.lsp") -(load "complement.lsp") -(load "cond.lsp") -(load "constantly.lsp") -(load "ctypecase.lsp") -(load "defconstant.lsp") -(load "define-modify-macro.lsp") -(load "defparameter.lsp") -(load "defun.lsp") -(load "defvar.lsp") -(load "destructuring-bind.lsp") -(load "ecase.lsp") -(load "eql.lsp") -(load "equal.lsp") -(load "equalp.lsp") -(load "etypecase.lsp") -(load "every.lsp") -(load "fboundp.lsp") -(load "fdefinition.lsp") -(load "flet.lsp") -(load "fmakunbound.lsp") -(load "funcall.lsp") -(load "function-lambda-expression.lsp") -(load "function.lsp") -(load "functionp.lsp") -(load "get-setf-expansion.lsp") -(load "identity.lsp") -(load "if.lsp") -(load "labels.lsp") -(load "lambda-list-keywords.lsp") -(load "lambda-parameters-limit.lsp") -(load "let.lsp") -(load "letstar.lsp") -(load "macrolet.lsp") -(load "multiple-value-bind.lsp") -(load "multiple-value-call.lsp") ;; include multiple-value-list -(load "multiple-value-prog1.lsp") -(load "multiple-value-setq.lsp") -(load "multiple-value-list.lsp") -(load "nil.lsp") -(load "not-and-null.lsp") -(load "notany.lsp") -(load "notevery.lsp") -(load "nth-value.lsp") -(load "or.lsp") -(load "prog.lsp") -(load "prog1.lsp") -(load "prog2.lsp") -(load "progn.lsp") -(load "progv.lsp") -(load "some.lsp") -(load "t.lsp") -(load "tagbody.lsp") -(load "typecase.lsp") -(load "unless.lsp") -(load "unwind-protect.lsp") -(load "values-list.lsp") -(load "values.lsp") -(load "when.lsp") diff --git a/load-environment.lsp b/load-environment.lsp deleted file mode 100644 index 25748e37c8eca6d486f698f5a3524d1403a54d31..0000000000000000000000000000000000000000 --- a/load-environment.lsp +++ /dev/null @@ -1,26 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Sun Dec 12 19:43:17 2004 -;;;; Contains: Load environment tests (section 25) - -(load "apropos.lsp") -(load "apropos-list.lsp") -(load "describe.lsp") -(load "disassemble.lsp") -(load "environment-functions.lsp") -(load "room.lsp") -(load "time.lsp") -(load "trace.lsp") ;; and untrace -(load "user-homedir-pathname.lsp") - -(load "decode-universal-time.lsp") -(load "encode-universal-time.lsp") -(load "get-universal-time.lsp") -(load "sleep.lsp") -(load "get-internal-time.lsp") - -(load "documentation.lsp") -#-lispworks (load "inspect.lsp") -(load "dribble.lsp") -(load "ed.lsp") - diff --git a/load-eval-and-compile.lsp b/load-eval-and-compile.lsp deleted file mode 100644 index 264ff4cf5f8ab91b15724278f0b0f8e24e2fb8d1..0000000000000000000000000000000000000000 --- a/load-eval-and-compile.lsp +++ /dev/null @@ -1,26 +0,0 @@ -;;; Tests of evaluation and compilation -(load "eval.lsp") -(load "eval-and-compile.lsp") -(load "compile.lsp") -(load "compiler-macros.lsp") -(load "constantp.lsp") -(load "lambda.lsp") -(load "eval-when.lsp") -(load "define-compiler-macro.lsp") -(load "define-symbol-macro.lsp") -(load "defmacro.lsp") -(load "the.lsp") -(load "symbol-macrolet.lsp") -(load "proclaim.lsp") -(load "declaim.lsp") -(load "locally.lsp") -(load "ignore.lsp") -(load "ignorable.lsp") -(load "dynamic-extent.lsp") -(load "optimize.lsp") -(load "special.lsp") -(load "macroexpand.lsp") -(load "macroexpand-1.lsp") -(load "declaration.lsp") -(load "type.lsp") -(load "macro-function.lsp") diff --git a/load-files.lsp b/load-files.lsp deleted file mode 100644 index 8a9b7657931ebf9a09851bf2ca2ed8e5f0a25ad5..0000000000000000000000000000000000000000 --- a/load-files.lsp +++ /dev/null @@ -1,16 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Thu Jan 1 11:59:35 2004 -;;;; Contains: Load tests of section 20, 'Files' - -(in-package :cl-test) - -(load "directory.lsp") -(load "probe-file.lsp") -(load "ensure-directories-exist.lsp") -(load "truename.lsp") -(load "file-author.lsp") -(load "file-write-date.lsp") -(load "rename-file.lsp") -(load "delete-file.lsp") -(load "file-error.lsp") diff --git a/load-format.lsp b/load-format.lsp deleted file mode 100644 index c1853db911e4979bcae6fc0a3e42f6bc2fe74c00..0000000000000000000000000000000000000000 --- a/load-format.lsp +++ /dev/null @@ -1,55 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Mon Aug 2 21:47:02 2004 -;;;; Contains: Load format-related tests - -(in-package :cl-test) - -;;; Format tests - -;;; 22.3.1 -(load "format-c.lsp") -(load "formatter-c.lsp") -(load "format-percent.lsp") -(load "format-ampersand.lsp") -(load "format-page.lsp") -(load "format-tilde.lsp") - -;;; 22.3.2 -(load "format-r.lsp") -(load "format-d.lsp") -(load "format-b.lsp") -(load "format-o.lsp") -(load "format-x.lsp") - -;;; 22.3.3 -(load "format-f.lsp") - -;;; 22.3.4 -(load "format-a.lsp") -(load "format-s.lsp") - -;;; 22.3.5 -(load "format-underscore.lsp") -(load "format-logical-block.lsp") -(load "format-i.lsp") -(load "format-slash.lsp") - -;;; 22.3.6 -(load "format-t.lsp") -(load "format-justify.lsp") - -;;; 22.3.7 -(load "format-goto.lsp") -(load "format-conditional.lsp") -(load "format-brace.lsp") -(load "format-question.lsp") - -;;; 22.3.8 -(load "format-paren.lsp") -(load "format-p.lsp") - -;;; 22.3.9 -(load "format-circumflex.lsp") -(load "format-newline.lsp") - diff --git a/load-hash-tables.lsp b/load-hash-tables.lsp deleted file mode 100644 index c7c61ef3b9f73f88b2a1b767c3a1e8c4ae99e1f6..0000000000000000000000000000000000000000 --- a/load-hash-tables.lsp +++ /dev/null @@ -1,16 +0,0 @@ -(compile-and-load "hash-table-aux.lsp") - -(load "hash-table.lsp") -(load "make-hash-table.lsp") -(load "hash-table-p.lsp") -(load "hash-table-count.lsp") -(load "hash-table-size.lsp") -(load "hash-table-rehash-size.lsp") -(load "hash-table-rehash-threshold.lsp") -(load "hash-table-test.lsp") -(load "gethash.lsp") -(load "remhash.lsp") -(load "clrhash.lsp") -(load "maphash.lsp") -(load "with-hash-table-iterator.lsp") -(load "sxhash.lsp") diff --git a/load-iteration.lsp b/load-iteration.lsp deleted file mode 100644 index eda2b9da947637300a5bde6555d2f28a4965c689..0000000000000000000000000000000000000000 --- a/load-iteration.lsp +++ /dev/null @@ -1,24 +0,0 @@ -;;; Tests of iteration forms -;;(load "iteration.lsp") -(load "do.lsp") -(load "dostar.lsp") -(load "dolist.lsp") -(load "dotimes.lsp") -(load "loop.lsp") -(load "loop1.lsp") -(load "loop2.lsp") -(load "loop3.lsp") -(load "loop4.lsp") -(load "loop5.lsp") -(load "loop6.lsp") -(load "loop7.lsp") -(load "loop8.lsp") -(load "loop9.lsp") -(load "loop10.lsp") -(load "loop11.lsp") -(load "loop12.lsp") -(load "loop13.lsp") -(load "loop14.lsp") -(load "loop15.lsp") -(load "loop16.lsp") -(load "loop17.lsp") diff --git a/load-numbers.lsp b/load-numbers.lsp deleted file mode 100644 index 7aad8e5ac8b1e42e46012dfd09d785d43c122959..0000000000000000000000000000000000000000 --- a/load-numbers.lsp +++ /dev/null @@ -1,116 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Mon Apr 7 07:16:44 2003 -;;;; Contains: Forms to load files containing tests of number concepts - -(in-package :cl-test) - -(compile-and-load "numbers-aux.lsp") -(compile-and-load "random-aux.lsp") - -(load "number-comparison.lsp") -(load "max.lsp") -(load "min.lsp") -(load "minusp.lsp") -(load "plusp.lsp") -(load "zerop.lsp") -(load "floor.lsp") -(load "ffloor.lsp") -(load "ceiling.lsp") -(load "fceiling.lsp") -(load "truncate.lsp") -(load "ftruncate.lsp") -(load "round.lsp") -(load "fround.lsp") - -;;; transcendental functions go here -(load "sin.lsp") -(load "cos.lsp") -(load "tan.lsp") -(load "asin.lsp") -(load "acos.lsp") -(load "atan.lsp") - -(load "sinh.lsp") -(load "cosh.lsp") -(load "tanh.lsp") -(load "asinh.lsp") -(load "acosh.lsp") -(load "atanh.lsp") - -(load "times.lsp") -(load "plus.lsp") -(load "minus.lsp") -(load "divide.lsp") -(load "oneplus.lsp") -(load "oneminus.lsp") -(load "abs.lsp") -(load "exp.lsp") -(load "expt.lsp") -(load "gcd.lsp") -(load "incf.lsp") -(load "decf.lsp") -(load "lcm.lsp") -(load "log.lsp") -(load "signum.lsp") -(load "sqrt.lsp") -(load "isqrt.lsp") -(load "random.lsp") -(load "random-state-p.lsp") -(load "make-random-state.lsp") -(load "numberp.lsp") -(load "cis.lsp") -(load "complex.lsp") -(load "complexp.lsp") -(load "conjugate.lsp") -(load "phase.lsp") -(load "realpart.lsp") -(load "imagpart.lsp") -(load "realp.lsp") -(load "numerator-denominator.lsp") -(load "rationalp.lsp") - -(load "ash.lsp") -(load "integer-length.lsp") -(load "integerp.lsp") - -(load "parse-integer.lsp") -(load "boole.lsp") - -(load "logand.lsp") -(load "logandc1.lsp") -(load "logandc2.lsp") -(load "logeqv.lsp") -(load "logior.lsp") -(load "lognand.lsp") -(load "lognor.lsp") -(load "logorc1.lsp") -(load "logorc2.lsp") -(load "lognot.lsp") -(load "logxor.lsp") -(load "logbitp.lsp") -(load "logcount.lsp") -(load "logtest.lsp") - -(load "byte.lsp") -(load "deposit-field.lsp") -(load "dpb.lsp") -(load "ldb.lsp") -(load "mask-field.lsp") - -(load "float.lsp") -(load "floatp.lsp") - -(load "rational.lsp") -(load "rationalize.lsp") - -(load "evenp.lsp") -(load "oddp.lsp") - -(load "epsilons.lsp") -(load "real.lsp") - -(load "upgraded-complex-part-type.lsp") - -(load "arithmetic-error.lsp") - diff --git a/load-objects.lsp b/load-objects.lsp deleted file mode 100644 index a73586bbe33d87c51c48bb13d8d739c5bb054cda..0000000000000000000000000000000000000000 --- a/load-objects.lsp +++ /dev/null @@ -1,58 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Mon Mar 24 03:39:09 2003 -;;;; Contains: Loader for CLOS-related test files - -(compile-and-load "defclass-aux.lsp") -(load "defclass.lsp") -(load "defclass-01.lsp") -(load "defclass-02.lsp") -(load "defclass-03.lsp") -(load "defclass-errors.lsp") -(load "defclass-forward-reference.lsp") -(load "ensure-generic-function.lsp") -(load "allocate-instance.lsp") -(load "reinitialize-instance.lsp") -(load "shared-initialize.lsp") -(load "change-class.lsp") -(load "update-instance-for-different-class.lsp") -(load "slot-boundp.lsp") -(load "slot-exists-p.lsp") -(load "slot-makunbound.lsp") -(load "slot-missing.lsp") -(load "slot-unbound.lsp") -(load "slot-value.lsp") -(load "method-qualifiers.lsp") -(load "no-applicable-method.lsp") -(load "no-next-method.lsp") -(load "remove-method.lsp") -(load "make-instance.lsp") -(load "make-instances-obsolete.lsp") -(load "make-load-form.lsp") -(load "make-load-form-saving-slots.lsp") -(load "with-accessors.lsp") -(load "with-slots.lsp") -(load "defgeneric.lsp") -(load "defgeneric-method-combination-aux.lsp") -(load "defgeneric-method-combination-plus.lsp") -(load "defgeneric-method-combination-append.lsp") -(load "defgeneric-method-combination-nconc.lsp") -(load "defgeneric-method-combination-list.lsp") -(load "defgeneric-method-combination-max.lsp") -(load "defgeneric-method-combination-min.lsp") -(load "defgeneric-method-combination-and.lsp") -(load "defgeneric-method-combination-or.lsp") -(load "defgeneric-method-combination-progn.lsp") -;; (load "defgeneric-method-combination-standard.lsp") -(load "find-class.lsp") -(load "next-method-p.lsp") -(load "call-next-method.lsp") -(load "compute-applicable-methods.lsp") -(load "define-method-combination.lsp") -(load "find-method.lsp") -(load "add-method.lsp") -(load "class-name.lsp") -(load "class-of.lsp") -(load "unbound-slot.lsp") -(load "defmethod.lsp") - diff --git a/load-packages.lsp b/load-packages.lsp deleted file mode 100644 index f28b52a0833c56b3db97707521a80062c8fcf01d..0000000000000000000000000000000000000000 --- a/load-packages.lsp +++ /dev/null @@ -1,38 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Sun Oct 6 00:32:56 2002 -;;;; Contains: Loader for files containing package tests - - -(compile-and-load "packages-00.lsp") -(load "find-symbol.lsp") -(load "find-all-symbols.lsp") -(load "find-package.lsp") -(load "list-all-packages.lsp") -(load "package-name.lsp") -(load "package-nicknames.lsp") -(load "intern.lsp") -(load "export.lsp") -(load "rename-package.lsp") -(load "shadow.lsp") -(load "shadowing-import.lsp") -(load "delete-package.lsp") -(load "make-package.lsp") -(load "with-package-iterator.lsp") -(load "unexport.lsp") -(load "unintern.lsp") -(load "in-package.lsp") -(load "unuse-package.lsp") -(load "use-package.lsp") -(load "defpackage.lsp") -(load "do-symbols.lsp") -(load "do-external-symbols.lsp") -(load "do-all-symbols.lsp") -(load "packagep.lsp") -(load "package-error.lsp") -(load "package-error-package.lsp") -(load "keyword.lsp") -(load "package-shadowing-symbols.lsp") -(load "package-use-list.lsp") -(load "package-used-by-list.lsp") -(load "import.lsp") diff --git a/load-pathnames.lsp b/load-pathnames.lsp deleted file mode 100644 index 6e0fa056ac95a54b21069c86856d2d1e1d1282cf..0000000000000000000000000000000000000000 --- a/load-pathnames.lsp +++ /dev/null @@ -1,36 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Sat Nov 29 04:33:05 2003 -;;;; Contains: Load tests for pathnames and logical pathnames - -(in-package :cl-test) - -(compile-and-load "pathnames-aux.lsp") - -(load "pathnames.lsp") -(load "pathname.lsp") -(load "pathnamep.lsp") -(load "make-pathname.lsp") -(load "pathname-host.lsp") -(load "pathname-device.lsp") -(load "pathname-directory.lsp") -(load "pathname-name.lsp") -(load "pathname-type.lsp") -(load "pathname-version.lsp") - -(load "load-logical-pathname-translations.lsp") -(load "logical-pathname.lsp") -(load "logical-pathname-translations.lsp") -(load "translate-logical-pathname.lsp") - -(load "namestring.lsp") -(load "file-namestring.lsp") -(load "directory-namestring.lsp") -(load "host-namestring.lsp") -(load "enough-namestring.lsp") - -(load "wild-pathname-p.lsp") -(load "merge-pathnames.lsp") -(load "pathname-match-p.lsp") - -(load "parse-namestring.lsp") \ No newline at end of file diff --git a/load-printer.lsp b/load-printer.lsp deleted file mode 100644 index c5bae7e90bafde300e1fd529354d93928b6c98f5..0000000000000000000000000000000000000000 --- a/load-printer.lsp +++ /dev/null @@ -1,49 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Mon Feb 23 04:40:33 2004 -;;;; Contains: File to load tests of the lisp printer - -(in-package :cl-test) - -(compile-and-load "printer-aux.lsp") - -(load "copy-pprint-dispatch.lsp") - -(load "print-integers.lsp") -(load "print-ratios.lsp") -(load "print-floats.lsp") -(load "print-complex.lsp") -(load "print-characters.lsp") -(load "print-symbols.lsp") -(load "print-strings.lsp") -(load "print-cons.lsp") -(load "print-backquote.lsp") -(load "print-bit-vector.lsp") -(load "print-vector.lsp") -(load "print-array.lsp") -(load "print-random-state.lsp") -(load "print-pathname.lsp") -(load "print-structure.lsp") -(load "printer-control-vars.lsp") -(load "pprint-dispatch.lsp") -(load "pprint-fill.lsp") -(load "pprint-linear.lsp") -(load "pprint-tabular.lsp") -(load "pprint-indent.lsp") -(load "pprint-logical-block.lsp") -(load "pprint-exit-if-list-exhausted.lsp") -(load "pprint-newline.lsp") -(load "pprint-tab.lsp") -(load "print-unreadable-object.lsp") -(load "write.lsp") -(load "print.lsp") -(load "pprint.lsp") -(load "prin1.lsp") -(load "princ.lsp") -(load "write-to-string.lsp") -(load "prin1-to-string.lsp") -(load "princ-to-string.lsp") -(load "print-level.lsp") -(load "print-length.lsp") - -(load "load-format.lsp") diff --git a/load-reader.lsp b/load-reader.lsp deleted file mode 100644 index 1a400ce07629d084b2c0b8d617786b841a9dfe26..0000000000000000000000000000000000000000 --- a/load-reader.lsp +++ /dev/null @@ -1,24 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Mon Feb 23 05:20:41 2004 -;;;; Contains: Load tests of the reader - -(in-package :cl-test) - -(load "reader-test.lsp") -(load "with-standard-io-syntax.lsp") -(load "copy-readtable.lsp") -(load "read.lsp") -(load "read-preserving-whitespace.lsp") -(load "read-delimited-list.lsp") -(load "read-from-string.lsp") -(load "readtable-case.lsp") -(load "readtablep.lsp") -(load "get-macro-character.lsp") -(load "set-macro-character.lsp") -(load "read-suppress.lsp") -(load "set-syntax-from-char.lsp") -(load "dispatch-macro-characters.lsp") - -(load "syntax.lsp") -(load "syntax-tokens.lsp") diff --git a/load-sequences.lsp b/load-sequences.lsp deleted file mode 100644 index 8bbf8adcff200bba029bf7c65c7bc3f87b364d73..0000000000000000000000000000000000000000 --- a/load-sequences.lsp +++ /dev/null @@ -1,41 +0,0 @@ -;;; Tests of sequences - -(load "copy-seq.lsp") -(load "elt.lsp") -(load "fill.lsp") -(load "fill-strings.lsp") -(load "make-sequence.lsp") -(load "map.lsp") -(load "map-into.lsp") -(load "reduce.lsp") -(load "count.lsp") -(load "count-if.lsp") -(load "count-if-not.lsp") -(load "reverse.lsp") -(load "nreverse.lsp") -(load "sort.lsp") -(load "stable-sort.lsp") -(load "length.lsp") -(load "find.lsp") -(load "find-if.lsp") -(load "find-if-not.lsp") -(load "position.lsp") -(load "position-if.lsp") -(load "position-if-not.lsp") -(load "search-list.lsp") -(load "search-vector.lsp") -(load "search-bitvector.lsp") -(load "search-string.lsp") -(load "mismatch.lsp") -(load "replace.lsp") -(load "subseq.lsp") -(load "substitute.lsp") -(load "substitute-if.lsp") -(load "substitute-if-not.lsp") -(load "nsubstitute.lsp") -(load "nsubstitute-if.lsp") -(load "nsubstitute-if-not.lsp") -(load "concatenate.lsp") -(load "merge.lsp") -(load "remove.lsp") ;; also related funs -(load "remove-duplicates.lsp") ;; also delete-duplicates diff --git a/load-streams.lsp b/load-streams.lsp deleted file mode 100644 index ee9bb9a4f8a38744d0bdbcc7beaf71361a7b8a4b..0000000000000000000000000000000000000000 --- a/load-streams.lsp +++ /dev/null @@ -1,57 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Tue Jan 13 19:38:10 2004 -;;;; Contains: Load files containing tests for section 21 (streams) - -(in-package :cl-test) - -(load "input-stream-p.lsp") -(load "output-stream-p.lsp") -(load "interactive-stream-p.lsp") -(load "open-stream-p.lsp") -(load "stream-element-type.lsp") -(load "streamp.lsp") -(load "read-byte.lsp") -(load "peek-char.lsp") -(load "read-char.lsp") -(load "read-char-no-hang.lsp") -(load "terpri.lsp") -(load "fresh-line.lsp") -(load "unread-char.lsp") -(load "write-char.lsp") -(load "read-line.lsp") -(load "write-string.lsp") -(load "write-line.lsp") -(load "read-sequence.lsp") -(load "write-sequence.lsp") -(load "file-length.lsp") -(load "file-position.lsp") -(load "file-string-length.lsp") -(load "open.lsp") -(load "stream-external-format.lsp") -(load "with-open-file.lsp") -(load "with-open-stream.lsp") -(load "listen.lsp") -(load "clear-input.lsp") -(load "finish-output.lsp") -(load "force-output.lsp") -(load "clear-output.lsp") -(load "make-synonym-stream.lsp") -(load "synonym-stream-symbol.lsp") -(load "make-broadcast-stream.lsp") -(load "broadcast-stream-streams.lsp") -(load "make-two-way-stream.lsp") -(load "two-way-stream-input-stream.lsp") -(load "two-way-stream-output-stream.lsp") -(load "echo-stream-input-stream.lsp") -(load "echo-stream-output-stream.lsp") -(load "make-echo-stream.lsp") -(load "concatenated-stream-streams.lsp") -(load "make-concatenated-stream.lsp") -(load "get-output-stream-string.lsp") -(load "make-string-input-stream.lsp") -(load "make-string-output-stream.lsp") -(load "with-input-from-string.lsp") -(load "with-output-to-string.lsp") -(load "stream-error-stream.lsp") - diff --git a/load-strings.lsp b/load-strings.lsp deleted file mode 100644 index 9303804553832ac5a6e2bb53999e4bd3b9709f91..0000000000000000000000000000000000000000 --- a/load-strings.lsp +++ /dev/null @@ -1,23 +0,0 @@ -;;; Tests of strings - -(load "char-schar.lsp") -(load "string.lsp") -(load "base-string.lsp") -(load "simple-string.lsp") -(load "simple-base-string.lsp") -(load "simple-string-p.lsp") -(load "stringp.lsp") -(load "string-upcase.lsp") -(load "string-downcase.lsp") -(load "string-capitalize.lsp") -(load "nstring-upcase.lsp") -(load "nstring-downcase.lsp") -(load "nstring-capitalize.lsp") -(load "string-trim.lsp") -(load "string-left-trim.lsp") -(load "string-right-trim.lsp") - -;;; Tests of string comparison functions -(compile-and-load "string-aux.lsp") -(load "string-comparisons.lsp") -(load "make-string.lsp") \ No newline at end of file diff --git a/load-structures.lsp b/load-structures.lsp deleted file mode 100644 index 9e8a0f91bb6c3818da69649c4da91cee032c8b55..0000000000000000000000000000000000000000 --- a/load-structures.lsp +++ /dev/null @@ -1,7 +0,0 @@ -;;; Tests of structures - -(load "structure-00.lsp") -(load "structures-01.lsp") -(load "structures-02.lsp") -(load "structures-03.lsp") -(load "structures-04.lsp") \ No newline at end of file diff --git a/load-symbols.lsp b/load-symbols.lsp deleted file mode 100644 index ecd02d38ab6dfa18243aa56caf52a8f2fcd0dde1..0000000000000000000000000000000000000000 --- a/load-symbols.lsp +++ /dev/null @@ -1,19 +0,0 @@ -;;; Tests of symbols -(compile-and-load "cl-symbols-aux.lsp") -;; (load "cl-symbol-names.lsp") ;; moved to gclload1.lsp -(load "cl-symbols.lsp") -(load "symbolp.lsp") -(load "keywordp.lsp") -(load "make-symbol.lsp") -(load "copy-symbol.lsp") -(load "gensym.lsp") -(load "gentemp.lsp") -(load "symbol-function.lsp") -(load "symbol-name.lsp") -(load "boundp.lsp") -(load "special-operator-p.lsp") -(load "makunbound.lsp") -(load "set.lsp") -(load "remprop.lsp") -(load "get.lsp") - diff --git a/load-system-construction.lsp b/load-system-construction.lsp deleted file mode 100644 index 32d25c0dd31ce46dbe02ce36d786c9a82d584b74..0000000000000000000000000000000000000000 --- a/load-system-construction.lsp +++ /dev/null @@ -1,12 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Sun Dec 12 19:44:29 2004 -;;;; Contains: Load tests for system construction (section 24) - -(in-package :cl-test) - -(load "compile-file.lsp") -(load "load.lsp") -(load "with-compilation-unit.lsp") -(load "features.lsp") -(load "modules.lsp") diff --git a/load-types-and-class.lsp b/load-types-and-class.lsp deleted file mode 100644 index c4b3459a0f54a9b54f1d139515dec6fc1fc7da74..0000000000000000000000000000000000000000 --- a/load-types-and-class.lsp +++ /dev/null @@ -1,22 +0,0 @@ -;;; Tests of types and classes - -(load "types-and-class.lsp") -(load "types-and-class-2.lsp") -(load "coerce.lsp") -(load "subtypep.lsp") -(load "subtypep-integer.lsp") -(load "subtypep-float.lsp") -(load "subtypep-rational.lsp") -(load "subtypep-real.lsp") -#-lispworks (load "subtypep-cons.lsp") -(load "subtypep-member.lsp") -(load "subtypep-eql.lsp") -(load "subtypep-array.lsp") -(load "subtypep-function.lsp") -(load "subtypep-complex.lsp") - -(load "deftype.lsp") -(load "standard-generic-function.lsp") -(load "type-of.lsp") -(load "typep.lsp") -(load "class-precedence-lists.lsp") diff --git a/makefile b/makefile index c23bbda406f67ede9cdf332bebee7f81679114e4..f463cc2bf07187cd43d7d9e659089c0261388336 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ # LISP=~/sbcl/src/runtime/sbcl --core ~/sbcl/output/sbcl.core --noinform # LISP=clisp -ansi -q # LISP=abcl -# LISP=ecl +LISP=ecl # LISP=/usr/local/lib/LispWorks/nongraphic-lispworks-4450 # LISP=acl @@ -136,6 +136,8 @@ rt_1000_8: clean: + @rm -f auxiliary/*.{out,fas,cls,fasl,o,so,~,fn,x86f,ufsl,abcl,lib} + @rm -f sample-files/*.{out,fas,cls,fasl,o,so,~,fn,x86f,ufsl,abcl,lib} @rm -f test*.out *.cls *.fasl *.o *.so *~ *.fn *.x86f *.fasl *.ufsl *.abcl *.fas *.lib \#*\# @rm -f *.dfsl *.d64fsl @(cd beyond-ansi; $(MAKE) clean) diff --git a/load-misc.lsp b/misc/load.lsp similarity index 58% rename from load-misc.lsp rename to misc/load.lsp index 519ae0c11b1b1c953d50701cd4828b9c114a84f0..cea9999547a53ab9f41cb9fb2dc8ef3ab307a708 100644 --- a/load-misc.lsp +++ b/misc/load.lsp @@ -5,8 +5,13 @@ ;;; Miscellaneous tests, mostly tests that failed in random testing ;;; on various implementations -(load "misc.lsp") +(in-package #:cl-test) -;;; Misc. tests dealing with type propagation in CMUCL -(load "misc-cmucl-type-prop.lsp") +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "misc.lsp") +;;; Misc. tests dealing with type propagation in CMUCL + (load "misc-cmucl-type-prop.lsp") +) diff --git a/misc-cmucl-type-prop.lsp b/misc/misc-cmucl-type-prop.lsp similarity index 99% rename from misc-cmucl-type-prop.lsp rename to misc/misc-cmucl-type-prop.lsp index a5fbb1d9bc6090d3381c52912559e4b9a24e0799..8b556efc6acc1f54def083bb96a205f59cadbd4e 100644 --- a/misc-cmucl-type-prop.lsp +++ b/misc/misc-cmucl-type-prop.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Mar 4 06:21:51 2005 ;;;; Contains: CMUCL type prop failures (moved from misc.lsp) -(in-package :cl-test) + ;;; All these are 'strange template failures' ;;; The comment before each is the NAME of the template in the backtrace diff --git a/misc.lsp b/misc/misc.lsp similarity index 99% rename from misc.lsp rename to misc/misc.lsp index d80d48ee5e45fab3e4fc3d728af9315bdf1d017d..ed1a5f59045eb3874c6145716d4a10e96d5d756c 100644 --- a/misc.lsp +++ b/misc/misc.lsp @@ -8,7 +8,7 @@ ;;; bug-stimulators in various implementations. ;;; -(in-package :cl-test) + (declaim (special *s1* *s2* *s3* *s4* *s5* *s6* *s7* *s8*)) diff --git a/abs.lsp b/numbers/abs.lsp similarity index 98% rename from abs.lsp rename to numbers/abs.lsp index ca0ddc114153b622a578d0339d537f0d99d7bf3b..4e2b0fb8174f120505b2527ff03e7fc917fe48c7 100644 --- a/abs.lsp +++ b/numbers/abs.lsp @@ -3,9 +3,9 @@ ;;;; Created: Mon Sep 1 20:16:42 2003 ;;;; Contains: Tests of ABS -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest abs.error.1 (signals-error (abs) program-error) diff --git a/acos.lsp b/numbers/acos.lsp similarity index 99% rename from acos.lsp rename to numbers/acos.lsp index 9944682597a83b94a00be39122be64e150b5d759..bcbf8962d540a370b0ccbb7f3a3b6768de1a8b75 100644 --- a/acos.lsp +++ b/numbers/acos.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Feb 10 05:39:24 2004 ;;;; Contains: Tess of ACOS -(in-package :cl-test) + (deftest acos.1 (loop for i from -1000 to 1000 diff --git a/acosh.lsp b/numbers/acosh.lsp similarity index 99% rename from acosh.lsp rename to numbers/acosh.lsp index 1425e723ec0e0f65f53d453e036c9b02ec1bbb2e..7d216155fab8dc73d792366a231ad5d55344fe0d 100644 --- a/acosh.lsp +++ b/numbers/acosh.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Feb 11 19:20:53 2004 ;;;; Contains: Tests of ACOSH -(in-package :cl-test) + (deftest acosh.1 (let ((result (acosh 1))) diff --git a/arithmetic-error.lsp b/numbers/arithmetic-error.lsp similarity index 99% rename from arithmetic-error.lsp rename to numbers/arithmetic-error.lsp index 12979cef31a8208f9cd5800165a0c334e8c68cc6..b9d0134c67cc40f857bc79dbb68a2d72aca251b9 100644 --- a/arithmetic-error.lsp +++ b/numbers/arithmetic-error.lsp @@ -2,7 +2,7 @@ ;;;; Author: Paul Dietz ;;;; Contains: Tests of ARITHMETIC-ERROR condition and associated accessors -(in-package :cl-test) + (deftest arithmethic-error.1 (let ((a (make-condition 'arithmetic-error diff --git a/ash.lsp b/numbers/ash.lsp similarity index 98% rename from ash.lsp rename to numbers/ash.lsp index 9ee802f8a2357986dd416585506915bf0ec51d88..92e3fe0cc979b2a6639bd4d34e9310ffde6c5f5c 100644 --- a/ash.lsp +++ b/numbers/ash.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Sep 7 08:43:03 2003 ;;;; Contains: Tests of ASH -(in-package :cl-test) + ;;; Error tests diff --git a/asin.lsp b/numbers/asin.lsp similarity index 99% rename from asin.lsp rename to numbers/asin.lsp index 2b544ba19108b07593173e9a2107ba270558c4b4..01a02555cebcefb5169ffae54c60dc9c688e7a41 100644 --- a/asin.lsp +++ b/numbers/asin.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Feb 11 05:59:43 2004 ;;;; Contains: Tests for ASIN -(in-package :cl-test) + (deftest asin.1 (loop for i from -1000 to 1000 diff --git a/asinh.lsp b/numbers/asinh.lsp similarity index 99% rename from asinh.lsp rename to numbers/asinh.lsp index 59fce0025dc62e738251e3c10f2f685883852a0e..5759203bc6159d3d77459e7843e79edbedcbc119 100644 --- a/asinh.lsp +++ b/numbers/asinh.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Feb 11 19:19:02 2004 ;;;; Contains: Tests of ASINH -(in-package :cl-test) + (deftest asinh.1 (let ((result (asinh 0))) diff --git a/atan.lsp b/numbers/atan.lsp similarity index 99% rename from atan.lsp rename to numbers/atan.lsp index 66cb1eea45a4cd3c8b682b57b1a2aa480fcefa08..09e24b360cf161a2e0e4493f610b0a198f2319d5 100644 --- a/atan.lsp +++ b/numbers/atan.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Feb 11 06:01:55 2004 ;;;; Contains: Tests of ATAN -(in-package :cl-test) + (deftest atan.1 (let ((result (atan 0))) diff --git a/atanh.lsp b/numbers/atanh.lsp similarity index 99% rename from atanh.lsp rename to numbers/atanh.lsp index 624c31b2ba29fea91603870eaeb2812d88e78c1a..bd61e458cef42afd9cff218a50d5964d5dd63115 100644 --- a/atanh.lsp +++ b/numbers/atanh.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Feb 11 19:26:25 2004 ;;;; Contains: Tests of ATANH -(in-package :cl-test) + (deftest atanh.1 (let ((result (atanh 0))) diff --git a/boole.lsp b/numbers/boole.lsp similarity index 98% rename from boole.lsp rename to numbers/boole.lsp index 74fdac38f93a5cf6decb61898da32965dfb6a177..8c673317a1a30b3f3961e26f5cc95cf73afe8b43 100644 --- a/boole.lsp +++ b/numbers/boole.lsp @@ -3,9 +3,9 @@ ;;;; Created: Mon Sep 8 20:21:19 2003 ;;;; Contains: Tests of BOOLE and associated constants -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (defparameter *boole-val-names* '(boole-1 boole-2 boole-and boole-andc1 boole-andc2 diff --git a/byte.lsp b/numbers/byte.lsp similarity index 98% rename from byte.lsp rename to numbers/byte.lsp index f9afd20d5874b9ac2bc054d7ff7df1fba281daf8..58815284a7f7458d39ce2d436e9f7d7ca9fec59c 100644 --- a/byte.lsp +++ b/numbers/byte.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 11 20:13:22 2003 ;;;; Contains: Tests of BYTE, BYTE-SIZE, and BYTE-POSITION -(in-package :cl-test) + (deftest byte.error.1 (signals-error (byte) program-error) diff --git a/ceiling.lsp b/numbers/ceiling.lsp similarity index 97% rename from ceiling.lsp rename to numbers/ceiling.lsp index 827b7850398cfac47c99568658cb5d168c8aac36..e13c6f71b6b7d0f00522a535e7505ba8265d303a 100644 --- a/ceiling.lsp +++ b/numbers/ceiling.lsp @@ -3,10 +3,10 @@ ;;;; Created: Tue Aug 19 06:50:44 2003 ;;;; Contains: Tests of CEILING -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "ceiling-aux.lsp") + + + (deftest ceiling.error.1 (signals-error (ceiling) program-error) diff --git a/cis.lsp b/numbers/cis.lsp similarity index 95% rename from cis.lsp rename to numbers/cis.lsp index 456edea2e2a91dc4fc9065d790042d3e3c2f9b07..0ddcbc557b325a65a346788755cafabd3a31d0d0 100644 --- a/cis.lsp +++ b/numbers/cis.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Sep 6 18:42:15 2003 ;;;; Contains: Tests of CIS -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest cis.error.1 (signals-error (cis) program-error) diff --git a/complex.lsp b/numbers/complex.lsp similarity index 98% rename from complex.lsp rename to numbers/complex.lsp index 28eb6c25bfc195965297b36710bca5f31f3802ce..277e02a84d0fc83f2d3940d30fa17f62526ae7a3 100644 --- a/complex.lsp +++ b/numbers/complex.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Sep 6 19:56:29 2003 ;;;; Contains: Tests of COMPLEX -(in-package :cl-test) + ;;; Error tests diff --git a/complexp.lsp b/numbers/complexp.lsp similarity index 95% rename from complexp.lsp rename to numbers/complexp.lsp index 3bcd96184456d3a5abf895077c36408ec806a011..0bea7c4a82b19dc73290a717b2ea6cb55f975595 100644 --- a/complexp.lsp +++ b/numbers/complexp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Sep 6 21:03:18 2003 ;;;; Contains: Tests for COMPLEXP -(in-package :cl-test) + (deftest complexp.error.1 (signals-error (complexp) program-error) diff --git a/conjugate.lsp b/numbers/conjugate.lsp similarity index 98% rename from conjugate.lsp rename to numbers/conjugate.lsp index cbcb48fc870a6a174f634b77f635519683d74e9b..f63dad0a8c1e0842a8587d77f7e51846b7954eb5 100644 --- a/conjugate.lsp +++ b/numbers/conjugate.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Sep 6 21:07:36 2003 ;;;; Contains: Tests of CONJUGATE -(in-package :cl-test) + ;;; Error tests diff --git a/cos.lsp b/numbers/cos.lsp similarity index 99% rename from cos.lsp rename to numbers/cos.lsp index 6d86e499338c88180a7c99c4575e1d756bb4283f..823f1cc43f5af4c197e8727b0910e65cb6804c1b 100644 --- a/cos.lsp +++ b/numbers/cos.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Feb 9 20:53:42 2004 ;;;; Contains: Tests of COS -(in-package :cl-test) + (deftest cos.1 (loop for i from -1000 to 1000 diff --git a/cosh.lsp b/numbers/cosh.lsp similarity index 99% rename from cosh.lsp rename to numbers/cosh.lsp index 60d6b7a4bb8e10a99734e14551a7587a79b0a231..515dba437f5da5c9351a0937498f07ced512b732 100644 --- a/cosh.lsp +++ b/numbers/cosh.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Feb 11 06:54:15 2004 ;;;; Contains: Tests of COSH -(in-package :cl-test) + (deftest cosh.1 (let ((result (cosh 0))) diff --git a/decf.lsp b/numbers/decf.lsp similarity index 98% rename from decf.lsp rename to numbers/decf.lsp index 8a6b7da8f40c3dc1a6ceff673952d29b03f0abfa..27523a8ff664175ab95432ba68c7e6d081fb3187 100644 --- a/decf.lsp +++ b/numbers/decf.lsp @@ -3,9 +3,9 @@ ;;;; Created: Thu Sep 4 20:50:54 2003 ;;;; Contains: Tests of DECF -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest decf.1 (let ((x 12)) diff --git a/deposit-field.lsp b/numbers/deposit-field.lsp similarity index 99% rename from deposit-field.lsp rename to numbers/deposit-field.lsp index b478f0562606e2098928a00f845c5fa0e5dfc8cc..7335f0055184dd5be769b15529a44f4819cfd9da 100644 --- a/deposit-field.lsp +++ b/numbers/deposit-field.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 11 20:23:15 2003 ;;;; Contains: Tests of DEPOSIT-FIELD -(in-package :cl-test) + ;;; Error tests diff --git a/divide.lsp b/numbers/divide.lsp similarity index 98% rename from divide.lsp rename to numbers/divide.lsp index 9cb906ce99a98aba05bf36e01241a27e39ea2e04..005855389be8a25cba9460238fe1d6a1b651e8b6 100644 --- a/divide.lsp +++ b/numbers/divide.lsp @@ -3,10 +3,10 @@ ;;;; Created: Sun Aug 31 20:20:15 2003 ;;;; Contains: Tests of the / function -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "division-aux.lsp") + + + (deftest /.error.1 (signals-error (/) program-error) diff --git a/dpb.lsp b/numbers/dpb.lsp similarity index 99% rename from dpb.lsp rename to numbers/dpb.lsp index 432af38045d2f3b46b5448fa45f571290b470f06..de5680291686fb23ce7b0e0564169db3e70ec1a1 100644 --- a/dpb.lsp +++ b/numbers/dpb.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 11 20:43:54 2003 ;;;; Contains: Tests of DPB -(in-package :cl-test) + ;;; Error tests diff --git a/epsilons.lsp b/numbers/epsilons.lsp similarity index 98% rename from epsilons.lsp rename to numbers/epsilons.lsp index 143dab834493dc6eb33071f89f2a16ddba78a6ae..9f4a7665477add3e47a4ccaf615f39866d596dd6 100644 --- a/epsilons.lsp +++ b/numbers/epsilons.lsp @@ -3,9 +3,9 @@ ;;;; Created: Wed Aug 20 22:05:20 2003 ;;;; Contains: Tests of the EPSILON constants -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest epsilons.1 (loop for e in (list short-float-epsilon single-float-epsilon diff --git a/evenp.lsp b/numbers/evenp.lsp similarity index 96% rename from evenp.lsp rename to numbers/evenp.lsp index 3b75ca388f587306703fd57c27f33da7be0de765..62e835e709b0a872934123f5aa2c094df7f78aef 100644 --- a/evenp.lsp +++ b/numbers/evenp.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 31 10:39:01 2003 ;;;; Contains: Tests of EVENP -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest evenp.error.1 (signals-error (evenp) program-error) diff --git a/exp.lsp b/numbers/exp.lsp similarity index 95% rename from exp.lsp rename to numbers/exp.lsp index d0510a34fc9ee9723537493593a162f17f21cea7..83ed9566621af6de2b189da0c94be6d258d518bc 100644 --- a/exp.lsp +++ b/numbers/exp.lsp @@ -3,10 +3,10 @@ ;;;; Created: Mon Sep 1 21:24:44 2003 ;;;; Contains: Tests of EXP -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "exp-aux.lsp") + + + ;;; Error tests diff --git a/expt.lsp b/numbers/expt.lsp similarity index 99% rename from expt.lsp rename to numbers/expt.lsp index e85b4ad94f1aa491fce035b40bf3b51415c04503..50ddde82ae6aeeee022ad85ea464ee9cc2d9bc48 100644 --- a/expt.lsp +++ b/numbers/expt.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Sep 2 19:36:22 2003 ;;;; Contains: Tests of EXPT -(in-package :cl-test) + ;;; Error tests diff --git a/fceiling.lsp b/numbers/fceiling.lsp similarity index 97% rename from fceiling.lsp rename to numbers/fceiling.lsp index 9577e5200d5c78e3f267a4365c153feea001b906..1a7303f5e54e5381bdba49ca0a39e4f6e6e40827 100644 --- a/fceiling.lsp +++ b/numbers/fceiling.lsp @@ -3,10 +3,10 @@ ;;;; Created: Wed Aug 20 06:22:23 2003 ;;;; Contains: Tests of FCEILING -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "fceiling-aux.lsp") + + + (deftest fceiling.error.1 (signals-error (fceiling) program-error) diff --git a/ffloor.lsp b/numbers/ffloor.lsp similarity index 97% rename from ffloor.lsp rename to numbers/ffloor.lsp index ccb1a945a822a2128455e40928936ccd5e179e74..c07cfacfe14f01cf6a257c09b7a63b6d20b8408c 100644 --- a/ffloor.lsp +++ b/numbers/ffloor.lsp @@ -3,10 +3,10 @@ ;;;; Created: Tue Aug 12 06:59:54 2003 ;;;; Contains: Tests of FFLOOR -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "ffloor-aux.lsp") + + + (deftest ffloor.error.1 (signals-error (ffloor) program-error) diff --git a/float.lsp b/numbers/float.lsp similarity index 99% rename from float.lsp rename to numbers/float.lsp index a92daf811175454cbd246efdecd4d114c918dc56..58108dd5ed4d254770bbc0fc83528345698f3692 100644 --- a/float.lsp +++ b/numbers/float.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 11 21:53:51 2003 ;;;; Contains: Tests of FLOAT -(in-package :cl-test) + (deftest float.error.1 (signals-error (float) program-error) diff --git a/floatp.lsp b/numbers/floatp.lsp similarity index 95% rename from floatp.lsp rename to numbers/floatp.lsp index a52440142fe8d0f28817fb8d7c72ce01415951d3..04176430a1d9903fbdc05da0c54bf9727f7a87ff 100644 --- a/floatp.lsp +++ b/numbers/floatp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 11 23:07:33 2003 ;;;; Contains: Tests of FLOATP -(in-package :cl-test) + ;;; Error tests diff --git a/floor.lsp b/numbers/floor.lsp similarity index 97% rename from floor.lsp rename to numbers/floor.lsp index 50828587ac53130f281772ba30770e510730075c..145c82abd9808f2a8e14ff2203d68a6999e54dec 100644 --- a/floor.lsp +++ b/numbers/floor.lsp @@ -3,10 +3,10 @@ ;;;; Created: Mon Aug 4 22:16:00 2003 ;;;; Contains: Tests of FLOOR -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "floor-aux.lsp") + + + ;;; Error tests diff --git a/fround.lsp b/numbers/fround.lsp similarity index 97% rename from fround.lsp rename to numbers/fround.lsp index bdf2cd63ccc455e9c87231513a01814064309334..a2d84f294eddb5e6d62578646955f9c4147d86ad 100644 --- a/fround.lsp +++ b/numbers/fround.lsp @@ -3,10 +3,10 @@ ;;;; Created: Thu Aug 21 16:07:59 2003 ;;;; Contains: Tests of FROUND -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "fround-aux.lsp") + + + ;;; Error tests diff --git a/ftruncate.lsp b/numbers/ftruncate.lsp similarity index 97% rename from ftruncate.lsp rename to numbers/ftruncate.lsp index 07430943769bc647b7dde70c358e7367ac959082..5272df80ce0d24338c11afa05ffb4e86302c11be 100644 --- a/ftruncate.lsp +++ b/numbers/ftruncate.lsp @@ -3,10 +3,10 @@ ;;;; Created: Wed Aug 20 06:36:35 2003 ;;;; Contains: Tests of FTRUNCATE -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "ftruncate-aux.lsp") + + + ;;; Error tests diff --git a/gcd.lsp b/numbers/gcd.lsp similarity index 95% rename from gcd.lsp rename to numbers/gcd.lsp index 88a06a3a243cc92014d77552576294a476b13272..846a33e4b9cd0743835fa0efe983b0f018001b67 100644 --- a/gcd.lsp +++ b/numbers/gcd.lsp @@ -3,10 +3,10 @@ ;;;; Created: Wed Sep 3 06:51:03 2003 ;;;; Contains: Tests of GCD -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "gcd-aux.lsp") + + + ;;; Error tests diff --git a/imagpart.lsp b/numbers/imagpart.lsp similarity index 97% rename from imagpart.lsp rename to numbers/imagpart.lsp index 823c7236e3cfc988881aeb76985fafc54f4f172e..0f6aa2c68ce5cc9a2a96bce74aa8dc311a10627b 100644 --- a/imagpart.lsp +++ b/numbers/imagpart.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Sep 7 07:47:43 2003 ;;;; Contains: Tests of IMAGPART -(in-package :cl-test) + (deftest imagpart.error.1 (signals-error (imagpart) program-error) diff --git a/incf.lsp b/numbers/incf.lsp similarity index 98% rename from incf.lsp rename to numbers/incf.lsp index 427d4001643ce51a6a06fb368304f74f325831e5..28bc30570ab61e4aacf7f582f2a82d04b815fa81 100644 --- a/incf.lsp +++ b/numbers/incf.lsp @@ -3,9 +3,9 @@ ;;;; Created: Thu Sep 4 20:01:15 2003 ;;;; Contains: Tests of INCF -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest incf.1 (let ((x 12)) diff --git a/integer-length.lsp b/numbers/integer-length.lsp similarity index 98% rename from integer-length.lsp rename to numbers/integer-length.lsp index 075e800b96598b3fb2309f285185f489c092f186..ca0a2372c7ccf3341db5a3fce0d1a418c2e0d14a 100644 --- a/integer-length.lsp +++ b/numbers/integer-length.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Sep 7 10:10:10 2003 ;;;; Contains: Tests for INTEGER-LENGTH -(in-package :cl-test) + (deftest integer-length.error.1 (signals-error (integer-length) program-error) diff --git a/integerp.lsp b/numbers/integerp.lsp similarity index 96% rename from integerp.lsp rename to numbers/integerp.lsp index 9e3350e995755f6be466c86c65bf3998edf1dc10..0d591073b495f5b78dffffc0febe77392b89ee5a 100644 --- a/integerp.lsp +++ b/numbers/integerp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Sep 7 10:18:34 2003 ;;;; Contains: Tests for INTEGERP -(in-package :cl-test) + (deftest integerp.error.1 (signals-error (integerp) program-error) diff --git a/isqrt.lsp b/numbers/isqrt.lsp similarity index 95% rename from isqrt.lsp rename to numbers/isqrt.lsp index eb3f66178ba5d96b50a69de683b879dc4a804499..f0afefa9e65fa1475b097223c3205953f4797f41 100644 --- a/isqrt.lsp +++ b/numbers/isqrt.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Sep 6 15:40:09 2003 ;;;; Contains: Tests of ISQRT -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/lcm.lsp b/numbers/lcm.lsp similarity index 96% rename from lcm.lsp rename to numbers/lcm.lsp index 275abb74eb5072307cf550d0c50f02c76cede209..7812ce5229f04b93cf6c7d1209f8eec47924934f 100644 --- a/lcm.lsp +++ b/numbers/lcm.lsp @@ -3,10 +3,10 @@ ;;;; Created: Thu Sep 4 22:03:21 2003 ;;;; Contains: Tests of LCM -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "gcd-aux.lsp") + + + (deftest lcm.error.1 (check-type-error #'lcm #'integerp) diff --git a/ldb.lsp b/numbers/ldb.lsp similarity index 99% rename from ldb.lsp rename to numbers/ldb.lsp index 586034e07b3d66d21d4407303575824a2381ca04..e6f5b4e7b05ce92f1d0cf01b4254076d703b491a 100644 --- a/ldb.lsp +++ b/numbers/ldb.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 11 20:45:17 2003 ;;;; Contains: Tests of LDB -(in-package :cl-test) + ;;; Error tests diff --git a/numbers/load.lsp b/numbers/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..619e4656ecfd189b9c64fa15b2898c3f08d00bae --- /dev/null +++ b/numbers/load.lsp @@ -0,0 +1,132 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Mon Apr 7 07:16:44 2003 +;;;; Contains: Forms to load files containing tests of number concepts + +(compile-and-load "ANSI-TESTS:AUX;numbers-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;random-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;floor-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;ffloor-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;ceiling-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;fceiling-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;truncate-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;ftruncate-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;round-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;fround-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;times-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;division-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;exp-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;gcd-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;types-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "number-comparison.lsp") + (load "max.lsp") + (load "min.lsp") + (load "minusp.lsp") + (load "plusp.lsp") + (load "zerop.lsp") + (load "floor.lsp") + (load "ffloor.lsp") + (load "ceiling.lsp") + (load "fceiling.lsp") + (load "truncate.lsp") + (load "ftruncate.lsp") + (load "round.lsp") + (load "fround.lsp") + +;;; transcendental functions go here + (load "sin.lsp") + (load "cos.lsp") + (load "tan.lsp") + (load "asin.lsp") + (load "acos.lsp") + (load "atan.lsp") + + (load "sinh.lsp") + (load "cosh.lsp") + (load "tanh.lsp") + (load "asinh.lsp") + (load "acosh.lsp") + (load "atanh.lsp") + + (load "times.lsp") + (load "plus.lsp") + (load "minus.lsp") + (load "divide.lsp") + (load "oneplus.lsp") + (load "oneminus.lsp") + (load "abs.lsp") + (load "exp.lsp") + (load "expt.lsp") + (load "gcd.lsp") + (load "incf.lsp") + (load "decf.lsp") + (load "lcm.lsp") + (load "log.lsp") + (load "signum.lsp") + (load "sqrt.lsp") + (load "isqrt.lsp") + (load "random.lsp") + (load "random-state-p.lsp") + (load "make-random-state.lsp") + (load "numberp.lsp") + (load "cis.lsp") + (load "complex.lsp") + (load "complexp.lsp") + (load "conjugate.lsp") + (load "phase.lsp") + (load "realpart.lsp") + (load "imagpart.lsp") + (load "realp.lsp") + (load "numerator-denominator.lsp") + (load "rationalp.lsp") + + (load "ash.lsp") + (load "integer-length.lsp") + (load "integerp.lsp") + + (load "parse-integer.lsp") + (load "boole.lsp") + + (load "logand.lsp") + (load "logandc1.lsp") + (load "logandc2.lsp") + (load "logeqv.lsp") + (load "logior.lsp") + (load "lognand.lsp") + (load "lognor.lsp") + (load "logorc1.lsp") + (load "logorc2.lsp") + (load "lognot.lsp") + (load "logxor.lsp") + (load "logbitp.lsp") + (load "logcount.lsp") + (load "logtest.lsp") + + (load "byte.lsp") + (load "deposit-field.lsp") + (load "dpb.lsp") + (load "ldb.lsp") + (load "mask-field.lsp") + + (load "float.lsp") + (load "floatp.lsp") + + (load "rational.lsp") + (load "rationalize.lsp") + + (load "evenp.lsp") + (load "oddp.lsp") + + (load "epsilons.lsp") + (load "real.lsp") + + (load "upgraded-complex-part-type.lsp") + + (load "arithmetic-error.lsp") +) diff --git a/log.lsp b/numbers/log.lsp similarity index 99% rename from log.lsp rename to numbers/log.lsp index dd82d25a81de639fa349e5d01951d32726c63e02..578c6e018ee7105dc24734d20a662ac92a9e125b 100644 --- a/log.lsp +++ b/numbers/log.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Feb 11 19:53:33 2004 ;;;; Contains: Tests of LOG -(in-package :cl-test) + (deftest log.1 (let ((result (log 1))) diff --git a/logand.lsp b/numbers/logand.lsp similarity index 97% rename from logand.lsp rename to numbers/logand.lsp index dc47ccc1da14141b42bc8b2c6fd82443236fefe5..5373894df607335d55629d6cdecfc70e7118fdc4 100644 --- a/logand.lsp +++ b/numbers/logand.lsp @@ -3,9 +3,9 @@ ;;;; Created: Mon Sep 8 21:23:22 2003 ;;;; Contains: Tests of LOGAND -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/logandc1.lsp b/numbers/logandc1.lsp similarity index 97% rename from logandc1.lsp rename to numbers/logandc1.lsp index 295bdf15d4ad724e2ee6db6351a3cf2ef3f4d08a..4ebc099bca72350f5b3ef55eabe39d9ec2e86b34 100644 --- a/logandc1.lsp +++ b/numbers/logandc1.lsp @@ -3,9 +3,9 @@ ;;;; Created: Mon Sep 8 21:47:22 2003 ;;;; Contains: Tests of LOGANDC1 -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/logandc2.lsp b/numbers/logandc2.lsp similarity index 97% rename from logandc2.lsp rename to numbers/logandc2.lsp index 8bef40f41cb65017d573b03eb2bcba10e36c51aa..4ab506e80f485ff338ed6408dac28c143902fb49 100644 --- a/logandc2.lsp +++ b/numbers/logandc2.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 05:52:31 2003 ;;;; Contains: Tests of LOGANDC2 -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/logbitp.lsp b/numbers/logbitp.lsp similarity index 96% rename from logbitp.lsp rename to numbers/logbitp.lsp index c2d0d9d4320af2a8b70088c58198019f98333083..b1def1eb1924bd903e37655e192810daad6ab5d3 100644 --- a/logbitp.lsp +++ b/numbers/logbitp.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 07:02:00 2003 ;;;; Contains: Tests of LOGBITP -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/logcount.lsp b/numbers/logcount.lsp similarity index 98% rename from logcount.lsp rename to numbers/logcount.lsp index 47a623de97861a586234e2705175e0a6dcafafe6..c571635c636e8f55e4ac48b0b992d2ccdbed06c5 100644 --- a/logcount.lsp +++ b/numbers/logcount.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 11 23:12:56 2003 ;;;; Contains: Tests of LOGCOUNT -(in-package :cl-test) + ;;; Error tests diff --git a/logeqv.lsp b/numbers/logeqv.lsp similarity index 97% rename from logeqv.lsp rename to numbers/logeqv.lsp index b28c2160fb854a3bc083cab5eb6ae9abb523c779..eeeef558a6ed57b1d76d2d29fc73c635a53d1772 100644 --- a/logeqv.lsp +++ b/numbers/logeqv.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 05:55:23 2003 ;;;; Contains: Tests of LOGEQV -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/logior.lsp b/numbers/logior.lsp similarity index 97% rename from logior.lsp rename to numbers/logior.lsp index 317c4406576a6ecca68948c49391f0b82a642d0f..b4732ab4fb073e8bd0f6ed7b3014e830f200d1e6 100644 --- a/logior.lsp +++ b/numbers/logior.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 06:08:21 2003 ;;;; Contains: Tests of LOGIOR -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/lognand.lsp b/numbers/lognand.lsp similarity index 97% rename from lognand.lsp rename to numbers/lognand.lsp index ca4dabdc263b0671716a17c2aa687f8aec4b0a81..cecebf1b4dd9fb9243b6fda7abc7451f72e2277f 100644 --- a/lognand.lsp +++ b/numbers/lognand.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 06:11:12 2003 ;;;; Contains: Tests of LOGNAND -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/lognor.lsp b/numbers/lognor.lsp similarity index 96% rename from lognor.lsp rename to numbers/lognor.lsp index 9c978f5828e9b3b6a0466627c9f2c620d9027cb4..a081abbecd31678a8d50bd9c48e962b966a63ae4 100644 --- a/lognor.lsp +++ b/numbers/lognor.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 06:14:35 2003 ;;;; Contains: Tests of LOGNOR -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/lognot.lsp b/numbers/lognot.lsp similarity index 93% rename from lognot.lsp rename to numbers/lognot.lsp index ef41c1469daba0a9477d5698ac47fc96f4ef145b..6247f6c26eb2d0221d3bbef4f1d96c71b32e82d6 100644 --- a/lognot.lsp +++ b/numbers/lognot.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 06:16:20 2003 ;;;; Contains: Tests of LOGNOT -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/logorc1.lsp b/numbers/logorc1.lsp similarity index 97% rename from logorc1.lsp rename to numbers/logorc1.lsp index 211d3dcc3b8bfc5e554f32100b12309427a10947..69de8b99d11c598a1f7115abd0dfddc61b2c753b 100644 --- a/logorc1.lsp +++ b/numbers/logorc1.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 06:23:43 2003 ;;;; Contains: Tests of LOGORC1 -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/logorc2.lsp b/numbers/logorc2.lsp similarity index 97% rename from logorc2.lsp rename to numbers/logorc2.lsp index 116ba4b3ebc7c1ffe71c19d071f8ea52511d1ada..d6365ee1cfc235dc7bc0a1bbb713d0721bbb0fe6 100644 --- a/logorc2.lsp +++ b/numbers/logorc2.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 06:27:45 2003 ;;;; Contains: Tests of LOGORC2 -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/logtest.lsp b/numbers/logtest.lsp similarity index 97% rename from logtest.lsp rename to numbers/logtest.lsp index 64ca631797ef9bfc576dd42a9d8239231b5ec828..2ba24eb28e5b2cffb35aef84050c5013e8289fed 100644 --- a/logtest.lsp +++ b/numbers/logtest.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 11 23:22:46 2003 ;;;; Contains: Tests for LOGTEST -(in-package :cl-test) + ;;; Error tests diff --git a/logxor.lsp b/numbers/logxor.lsp similarity index 97% rename from logxor.lsp rename to numbers/logxor.lsp index 271edb5e433e906d7d6ac37875fa70f35c61fd1f..dc23a50f74c3791db12aded6e3e5b52b97eefb0c 100644 --- a/logxor.lsp +++ b/numbers/logxor.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Sep 9 06:30:57 2003 ;;;; Contains: Tests of LOGXOR -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/make-random-state.lsp b/numbers/make-random-state.lsp similarity index 98% rename from make-random-state.lsp rename to numbers/make-random-state.lsp index 02b1b03acd87c70c9028ef2da4a58ea028dff7af..f405c3ff828cbad4e4e6ab32ef08e73368680f3a 100644 --- a/make-random-state.lsp +++ b/numbers/make-random-state.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Sep 6 17:53:30 2003 ;;;; Contains: Tests of MAKE-RANDOM-STATE -(in-package :cl-test) + ;;; Error tests diff --git a/mask-field.lsp b/numbers/mask-field.lsp similarity index 99% rename from mask-field.lsp rename to numbers/mask-field.lsp index ea7ce2335e6fc8318cde1ef5613b1ad915ec07c1..7d2a244c54f11425014706d0d746f4544fe2e3a0 100644 --- a/mask-field.lsp +++ b/numbers/mask-field.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 11 21:27:13 2003 ;;;; Contains: Tests of MASK-FIELD -(in-package :cl-test) + ;;; Error tests diff --git a/max.lsp b/numbers/max.lsp similarity index 98% rename from max.lsp rename to numbers/max.lsp index 924a13013c00328da0ebfdb25f57f90ab36b875f..8d82470c430e3837506a224547908faec95d2267 100644 --- a/max.lsp +++ b/numbers/max.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 3 15:55:17 2003 ;;;; Contains: Tests of MAX -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/min.lsp b/numbers/min.lsp similarity index 98% rename from min.lsp rename to numbers/min.lsp index e5a88dfc60f4f42607ac1b8cbb3be4ed20f77106..e6107ff1c276135c3e8394ba00b7d0aaba312a32 100644 --- a/min.lsp +++ b/numbers/min.lsp @@ -3,9 +3,9 @@ ;;;; Created: Mon Aug 4 21:24:45 2003 ;;;; Contains: Tests of MIN -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest min.error.1 (signals-error (min) program-error) diff --git a/minus.lsp b/numbers/minus.lsp similarity index 98% rename from minus.lsp rename to numbers/minus.lsp index 865b26250fde0bf480db2572fa54e284d41a471e..b0514b350cd522fd72a048b1e56f66d1170755c4 100644 --- a/minus.lsp +++ b/numbers/minus.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 31 11:15:14 2003 ;;;; Contains: Tests of the - function -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest minus.error.1 (signals-error (-) program-error) diff --git a/minusp.lsp b/numbers/minusp.lsp similarity index 98% rename from minusp.lsp rename to numbers/minusp.lsp index 7a0c78cfb0c662a558254f2e6bf24c26dd99f96c..dd58a39501b5f6a81fd1ce6ba66733d38f650222 100644 --- a/minusp.lsp +++ b/numbers/minusp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Aug 4 21:33:44 2003 ;;;; Contains: Tests of MINUSP -(in-package :cl-test) + (deftest minusp.error.1 (signals-error (minusp) program-error) diff --git a/number-comparison.lsp b/numbers/number-comparison.lsp similarity index 99% rename from number-comparison.lsp rename to numbers/number-comparison.lsp index 20830b5686c6e901a44656b032889da80a5805f7..6142b3b5d672d731d7ef28d67f7086e7607b6675 100644 --- a/number-comparison.lsp +++ b/numbers/number-comparison.lsp @@ -3,9 +3,9 @@ ;;;; Created: Mon Apr 7 07:17:42 2003 ;;;; Contains: Tests of =, /=, <, <=, >, >= -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Errors tests on comparison functions diff --git a/numberp.lsp b/numbers/numberp.lsp similarity index 95% rename from numberp.lsp rename to numbers/numberp.lsp index 08931f781bef24fbabae96f96f9be174a82c32dc..625b0b378c18b2006eb0ab8f4d556f0c5f1cea58 100644 --- a/numberp.lsp +++ b/numbers/numberp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Sep 6 18:20:36 2003 ;;;; Contains: Tests of NUMBERP -(in-package :cl-test) + (deftest numberp.error.1 (signals-error (numberp) program-error) diff --git a/numerator-denominator.lsp b/numbers/numerator-denominator.lsp similarity index 97% rename from numerator-denominator.lsp rename to numbers/numerator-denominator.lsp index 7f487b17f1bb43ca878fecdf649a1dfdbe43bf84..a9dab6517d1b643ac4dff0f7c05ba47f0857791f 100644 --- a/numerator-denominator.lsp +++ b/numbers/numerator-denominator.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Sep 7 08:24:57 2003 ;;;; Contains: Tests of NUMERATOR, DENOMINATOR -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest numerator.error.1 (signals-error (numerator) program-error) diff --git a/oddp.lsp b/numbers/oddp.lsp similarity index 96% rename from oddp.lsp rename to numbers/oddp.lsp index 8fd3ec429826e19e971278d77df26d0d974f5401..ce43020aa4e4be42ae2ea962e7ea67319ecd086a 100644 --- a/oddp.lsp +++ b/numbers/oddp.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 31 10:48:25 2003 ;;;; Contains: Tests of ODDP -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/oneminus.lsp b/numbers/oneminus.lsp similarity index 98% rename from oneminus.lsp rename to numbers/oneminus.lsp index afac16ee5c8b27ad84ed8339099a20f438601020..61d57198d50a144b3dde8c21eeb70ebfb8eeb8a8 100644 --- a/oneminus.lsp +++ b/numbers/oneminus.lsp @@ -3,9 +3,9 @@ ;;;; Created: Mon Sep 1 20:14:34 2003 ;;;; Contains: Tests of 1- -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; Error tests diff --git a/oneplus.lsp b/numbers/oneplus.lsp similarity index 98% rename from oneplus.lsp rename to numbers/oneplus.lsp index 0646df8e136aaba87f1764eea7d5fb524f7abc4a..80a6830b028057ff5e2b9e802b3a224e3dd5f0ca 100644 --- a/oneplus.lsp +++ b/numbers/oneplus.lsp @@ -3,9 +3,9 @@ ;;;; Created: Mon Sep 1 19:53:34 2003 ;;;; Contains: Tests of 1+ -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest 1+.error.1 (signals-error (1+) program-error) diff --git a/parse-integer.lsp b/numbers/parse-integer.lsp similarity index 99% rename from parse-integer.lsp rename to numbers/parse-integer.lsp index 35063b5cfd99139a4adfff63dd58f58c1780da96..61ee3798d24c04c2198ce18e38812ae5d8175721 100644 --- a/parse-integer.lsp +++ b/numbers/parse-integer.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Sep 7 10:24:13 2003 ;;;; Contains: Tests of PARSE-INTEGER -(in-package :cl-test) + (deftest parse-integer.error.1 (signals-error (parse-integer) program-error) diff --git a/phase.lsp b/numbers/phase.lsp similarity index 99% rename from phase.lsp rename to numbers/phase.lsp index b447f66ee57e7b32045a6378afd9519588449647..40c4cee4980eb0cc777a2596df82ed81801f1d51 100644 --- a/phase.lsp +++ b/numbers/phase.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Sep 6 21:15:54 2003 ;;;; Contains: Tests of PHASE -(in-package :cl-test) + (deftest phase.error.1 (signals-error (phase) program-error) diff --git a/plus.lsp b/numbers/plus.lsp similarity index 99% rename from plus.lsp rename to numbers/plus.lsp index 869c76d13f536f388108cd4b345184232575357c..5915459b553f3d20387b7c38036a7557269eaebf 100644 --- a/plus.lsp +++ b/numbers/plus.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 31 04:34:17 2003 ;;;; Contains: Tests of the function + -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + ;;; (compile-and-load "plus-aux.lsp") (deftest plus.1 diff --git a/plusp.lsp b/numbers/plusp.lsp similarity index 98% rename from plusp.lsp rename to numbers/plusp.lsp index 8d0e5a2091862dd39b56028520cd46c8bc2e00cc..7b5060b4ab339a81bdd8e38da91a60e88f9dbdbc 100644 --- a/plusp.lsp +++ b/numbers/plusp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Aug 4 21:42:14 2003 ;;;; Contains: Tests for PLUSP -(in-package :cl-test) + ;;; Error tests diff --git a/random-state-p.lsp b/numbers/random-state-p.lsp similarity index 96% rename from random-state-p.lsp rename to numbers/random-state-p.lsp index 0b78c8384218813d00f6ed83dae140c02a3ae1b2..7be657742d4bb7d774a66e2f621fc823f1bfe7f4 100644 --- a/random-state-p.lsp +++ b/numbers/random-state-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Sep 6 17:50:04 2003 ;;;; Contains: Tests of RANDOM-STATE-P -(in-package :cl-test) + (deftest random-state-p.error.1 (signals-error (random-state-p) program-error) diff --git a/random.lsp b/numbers/random.lsp similarity index 95% rename from random.lsp rename to numbers/random.lsp index 2f5df06ecd2058dac2c86f7f91300f1d6ec275e3..a6ab34ce29554c2deef4efdb9785b6cd6908ab57 100644 --- a/random.lsp +++ b/numbers/random.lsp @@ -3,10 +3,10 @@ ;;;; Created: Sat Sep 6 15:47:42 2003 ;;;; Contains: Tests of RANDOM -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "random-aux.lsp") + + + (deftest random.error.1 (signals-error (random) program-error) diff --git a/rational.lsp b/numbers/rational.lsp similarity index 98% rename from rational.lsp rename to numbers/rational.lsp index 715ad64746ff8e140a76b62e2643c689fa487c9a..7e0d3b73ff0753ff750e52c03bfda921809e3ada 100644 --- a/rational.lsp +++ b/numbers/rational.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Sep 1 13:49:18 2003 ;;;; Contains: Tests of RATIONAL -(in-package :cl-test) + (deftest rational.error.1 (signals-error (rational) program-error) diff --git a/rationalize.lsp b/numbers/rationalize.lsp similarity index 98% rename from rationalize.lsp rename to numbers/rationalize.lsp index 800f1d791529ce463abb356ab58dd30754f89430..11418f5b00c943250cde71b57b8277ec206d5f96 100644 --- a/rationalize.lsp +++ b/numbers/rationalize.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Sep 1 14:00:45 2003 ;;;; Contains: Tests of RATIONALIZE -(in-package :cl-test) + (deftest rationalize.error.1 (signals-error (rationalize) program-error) diff --git a/rationalp.lsp b/numbers/rationalp.lsp similarity index 97% rename from rationalp.lsp rename to numbers/rationalp.lsp index 4524894f177fafc56908a24dc005d10eff13757b..e43c53ce90ba7b37cc744ad5cfad47e4e3e772e7 100644 --- a/rationalp.lsp +++ b/numbers/rationalp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Sep 7 08:36:31 2003 ;;;; Contains: Tests of RATIONALP -(in-package :cl-test) + (deftest rationalp.error.1 (signals-error (rationalp) program-error) diff --git a/real.lsp b/numbers/real.lsp similarity index 98% rename from real.lsp rename to numbers/real.lsp index b25851cb333cef181ed3dfefa3d16dfe93c4ab03..fc9941bfdf51301b886b768d51cf16d5f5ebfe96 100644 --- a/real.lsp +++ b/numbers/real.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Oct 31 21:41:49 2004 ;;;; Contains: Additional tests of the REAL type specifier -(in-package :cl-test) + (deftest real.1 (loop for i = 1 then (ash i 1) diff --git a/realp.lsp b/numbers/realp.lsp similarity index 96% rename from realp.lsp rename to numbers/realp.lsp index 8cbf4e9e8c21de6ced74a6f53a4730687dfad8aa..affb15be9d931c3271ac5f4a24d301147f3a26d7 100644 --- a/realp.lsp +++ b/numbers/realp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Sep 7 08:22:06 2003 ;;;; Contains: Tests of REALP -(in-package :cl-test) + (deftest realp.error.1 (signals-error (realp) program-error) diff --git a/realpart.lsp b/numbers/realpart.lsp similarity index 98% rename from realpart.lsp rename to numbers/realpart.lsp index 6b3c487b11e054d77798188084debfc165c868c2..cac22d601e524e8c00ec38997f4f00b3a34426a5 100644 --- a/realpart.lsp +++ b/numbers/realpart.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Sep 7 07:41:15 2003 ;;;; Contains: Tests of REALPART -(in-package :cl-test) + (deftest realpart.error.1 (signals-error (realpart) program-error) diff --git a/round.lsp b/numbers/round.lsp similarity index 97% rename from round.lsp rename to numbers/round.lsp index 94668a25d02775bc91d1c7b0788b2b159b0defef..45161134cf08bbe85a89d45ed3eaf77dbbe9ab8f 100644 --- a/round.lsp +++ b/numbers/round.lsp @@ -3,10 +3,10 @@ ;;;; Created: Thu Aug 21 13:39:56 2003 ;;;; Contains: Tests of ROUND -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "round-aux.lsp") + + + (deftest round.error.1 (signals-error (round) program-error) diff --git a/signum.lsp b/numbers/signum.lsp similarity index 99% rename from signum.lsp rename to numbers/signum.lsp index 2c80c3965810ce516dd0469a7f0435427e2efe09..39edf5145feaeec809bb3631c12d905a13536033 100644 --- a/signum.lsp +++ b/numbers/signum.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 4 22:29:09 2003 ;;;; Contains: Tests of SIGNUM -(in-package :cl-test) + (deftest signum.error.1 (signals-error (signum) program-error) diff --git a/sin.lsp b/numbers/sin.lsp similarity index 99% rename from sin.lsp rename to numbers/sin.lsp index 8272bff5d9ebea10a70408e27f31f8cbd4602961..17c08e55f7fd58b5aaca558d93466ee9f47bf4b8 100644 --- a/sin.lsp +++ b/numbers/sin.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Feb 9 20:20:46 2004 ;;;; Contains: Tests for SIN -(in-package :cl-test) + (deftest sin.1 (loop for i from -1000 to 1000 diff --git a/sinh.lsp b/numbers/sinh.lsp similarity index 99% rename from sinh.lsp rename to numbers/sinh.lsp index 91970caf50cdabdc3cc20a619270289476ed08b9..18324312e35e436683091b824e4bb291f2c0be18 100644 --- a/sinh.lsp +++ b/numbers/sinh.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Feb 11 06:29:51 2004 ;;;; Contains: Tests for SINH -(in-package :cl-test) + (deftest sinh.1 (let ((result (sinh 0))) diff --git a/sqrt.lsp b/numbers/sqrt.lsp similarity index 98% rename from sqrt.lsp rename to numbers/sqrt.lsp index 2e8a0ff3bc2ca9b0e3ff3fbf8328f51813846ebe..067adadb360fb5b9525815e1fec5a64061dde99d 100644 --- a/sqrt.lsp +++ b/numbers/sqrt.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Sep 6 10:54:17 2003 ;;;; Contains: Tests of SQRT -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") + + (deftest sqrt.error.1 (signals-error (sqrt) program-error) diff --git a/tan.lsp b/numbers/tan.lsp similarity index 99% rename from tan.lsp rename to numbers/tan.lsp index db6e0e745d13dd9e90c220e4ed4f7550cdf36b2e..56ed024d09c3cf74fc0bd65a80389a1caa8b2ad0 100644 --- a/tan.lsp +++ b/numbers/tan.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Feb 9 20:55:40 2004 ;;;; Contains: Tests of TAN -(in-package :cl-test) + (deftest tan.1 (loop for i from -1000 to 1000 diff --git a/tanh.lsp b/numbers/tanh.lsp similarity index 98% rename from tanh.lsp rename to numbers/tanh.lsp index f120e6d0170dcd0c11e089741ec982246f3c0e6d..bbbc6a1245d79ddbd3671d707da1a7d4e8d237e8 100644 --- a/tanh.lsp +++ b/numbers/tanh.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Feb 11 19:16:35 2004 ;;;; Contains: Tests of TANH -(in-package :cl-test) + (deftest tanh.1 (let ((result (tanh 0))) diff --git a/times.lsp b/numbers/times.lsp similarity index 99% rename from times.lsp rename to numbers/times.lsp index 22c10f2f5cba854ebc9a145a93a687f009375659..89b70266f6b51040e7bf73d6f7048f1157b6c837 100644 --- a/times.lsp +++ b/numbers/times.lsp @@ -3,10 +3,10 @@ ;;;; Created: Thu Aug 28 10:41:34 2003 ;;;; Contains: Tests of the multiplication function * -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "times-aux.lsp") + + + (deftest *.1 (*) diff --git a/truncate.lsp b/numbers/truncate.lsp similarity index 97% rename from truncate.lsp rename to numbers/truncate.lsp index 40b2e09eb336b8261d5aea5b8d42b7a37b9262e7..0188e4f36124334f280c81139275fc59c9c8ab52 100644 --- a/truncate.lsp +++ b/numbers/truncate.lsp @@ -3,10 +3,10 @@ ;;;; Created: Wed Aug 20 05:13:26 2003 ;;;; Contains: Tests of TRUNCATE -(in-package :cl-test) -(compile-and-load "numbers-aux.lsp") -(compile-and-load "truncate-aux.lsp") + + + (deftest truncate.error.1 (signals-error (truncate) program-error) diff --git a/upgraded-complex-part-type.lsp b/numbers/upgraded-complex-part-type.lsp similarity index 98% rename from upgraded-complex-part-type.lsp rename to numbers/upgraded-complex-part-type.lsp index b39fc32834e570b18e37ee45f9aaf8559dc80b35..a520480c842bbfc12896bc32ef27260642ea3080 100644 --- a/upgraded-complex-part-type.lsp +++ b/numbers/upgraded-complex-part-type.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Nov 27 21:15:46 2004 ;;;; Contains: Tests of UPGRADE-COMPLEX-PART-TYPE -(in-package :cl-test) -(compile-and-load "types-aux.lsp") + + (defmacro def-ucpt-test (name types) `(deftest ,name diff --git a/zerop.lsp b/numbers/zerop.lsp similarity index 99% rename from zerop.lsp rename to numbers/zerop.lsp index 53068c60635753869646c68731d74272c0a805e7..17fe40028cead50f652cca9d595d2081f81f2d29 100644 --- a/zerop.lsp +++ b/numbers/zerop.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Aug 4 21:47:34 2003 ;;;; Contains: Tests of ZEROP -(in-package :cl-test) + (deftest zerop.error.1 (signals-error (zerop) program-error) diff --git a/add-method.lsp b/objects/add-method.lsp similarity index 99% rename from add-method.lsp rename to objects/add-method.lsp index 75e0fef7b0c80c2b4971432dc476c84638488c1c..3557a653820008447c8a62004990a0e22c3649e3 100644 --- a/add-method.lsp +++ b/objects/add-method.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Jun 4 19:12:25 2003 ;;;; Contains: Tests for ADD-METHOD -(in-package :cl-test) + (defgeneric add-method-gf-01 (x) (:method ((x t)) 'a)) diff --git a/allocate-instance.lsp b/objects/allocate-instance.lsp similarity index 99% rename from allocate-instance.lsp rename to objects/allocate-instance.lsp index d69d8318a5b1cfd84c68a5c6f4a573cc2ae2b9a8..7aa665d358b61db37174ffe2c11c73c6a8f2c573 100644 --- a/allocate-instance.lsp +++ b/objects/allocate-instance.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Apr 28 21:06:58 2003 ;;;; Contains: Tests of ALLOCATE-INSTANCE -(in-package :cl-test) + ;;; According to the CLHS, the meaning of adding methods to ;;; ALLOCATE-INSTANCE is unspecified, so this will not be tested diff --git a/call-next-method.lsp b/objects/call-next-method.lsp similarity index 99% rename from call-next-method.lsp rename to objects/call-next-method.lsp index 8f4ec10b2aa9d37ab4c84f490a968d191ed882f6..528eb9be99b4668d2ad573619fd5960482bb597b 100644 --- a/call-next-method.lsp +++ b/objects/call-next-method.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 31 11:18:15 2003 ;;;; Contains: Tests of CALL-NEXT-METHOD -(in-package :cl-test) + ;;; Tests where there is no next method are in no-next-method.lsp diff --git a/change-class.lsp b/objects/change-class.lsp similarity index 99% rename from change-class.lsp rename to objects/change-class.lsp index ac5b9d71298be757004d7934794404221adc0c87..e344e88f1d0d2ef89867af2773693660ec15b80d 100644 --- a/change-class.lsp +++ b/objects/change-class.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 3 14:23:29 2003 ;;;; Contains: Tests of CHANGE-CLASS -(in-package :cl-test) + (defclass change-class-class-01a () ((a :initarg :a) (b :initarg :b) (c :initarg :c))) diff --git a/class-name.lsp b/objects/class-name.lsp similarity index 98% rename from class-name.lsp rename to objects/class-name.lsp index a109cce7e7db7aaaf85776fe27229721a3959a23..fb4854fe732612cd32a7a2408150a0e1d404f7b8 100644 --- a/class-name.lsp +++ b/objects/class-name.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jun 15 12:05:47 2003 ;;;; Contains: Tests of CLASS-NAME -(in-package :cl-test) + ;;; This is mostly tested elsewhere. diff --git a/class-of.lsp b/objects/class-of.lsp similarity index 93% rename from class-of.lsp rename to objects/class-of.lsp index 995df09a8a74dec887538ea84cc5a068d2c71762..f585ef69eceecddacb967c8c97075d6e2edd370e 100644 --- a/class-of.lsp +++ b/objects/class-of.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jun 16 19:40:32 2003 ;;;; Contains: Tests of CLASS-OF -(in-package :cl-test) + ;;; Most tests of CLASS-OF are in other files diff --git a/compute-applicable-methods.lsp b/objects/compute-applicable-methods.lsp similarity index 99% rename from compute-applicable-methods.lsp rename to objects/compute-applicable-methods.lsp index 40aa4a1d6c2325390a725585aed12a9d9fa8fd61..3400dfcc6a6def394009e0ea8b8eaf53ac142300 100644 --- a/compute-applicable-methods.lsp +++ b/objects/compute-applicable-methods.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Jun 2 06:40:41 2003 ;;;; Contains: Tests for COMPUTE-APPLICABLE-METHODS -(in-package :cl-test) + (defgeneric cam-gf-01 (x y)) diff --git a/defclass-01.lsp b/objects/defclass-01.lsp similarity index 99% rename from defclass-01.lsp rename to objects/defclass-01.lsp index 85a600bc24dd51e95c6b8d7e6fb1fd3c549b22f7..76ba329269cb2a5752dbd4f799ae8f914146c899 100644 --- a/defclass-01.lsp +++ b/objects/defclass-01.lsp @@ -3,9 +3,6 @@ ;;;; Created: Sun Apr 20 20:58:54 2003 ;;;; Contains: Tests for DEFCLASS, part 01 - -(in-package :cl-test) - ;;; I've decided to write some 'manual' tests, then refactor these back ;;; to the automatic mechanisms I'll put into defclass-aux.lsp after ;;; I have a better understanding of the object system diff --git a/defclass-02.lsp b/objects/defclass-02.lsp similarity index 99% rename from defclass-02.lsp rename to objects/defclass-02.lsp index eca1f66fd471db3dc2f943a6fd8573d4178d26bf..9f3c2ff821a8f9bbdfb4969ae5b20007ccc7ec56 100644 --- a/defclass-02.lsp +++ b/objects/defclass-02.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Apr 25 07:16:57 2003 ;;;; Contains: Tests of DEFCLASS with simple inheritance -(in-package :cl-test) + ;;; diff --git a/defclass-03.lsp b/objects/defclass-03.lsp similarity index 99% rename from defclass-03.lsp rename to objects/defclass-03.lsp index 8f22ea3ab6c85ef02eff7a513b0d7429067d2e6e..da4c319a2313d11765a12b788bef7ffb41432a10 100644 --- a/defclass-03.lsp +++ b/objects/defclass-03.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Apr 27 16:23:59 2003 ;;;; Contains: Tests of DEFCLASS with more involved inheritance -(in-package :cl-test) + ;;; diff --git a/defclass-errors.lsp b/objects/defclass-errors.lsp similarity index 99% rename from defclass-errors.lsp rename to objects/defclass-errors.lsp index 24de5646d45435101059ce9a98c3ae9e9a8f49ee..209a20e2777db25ab5ad0c2aa73d62213d4ac9f2 100644 --- a/defclass-errors.lsp +++ b/objects/defclass-errors.lsp @@ -3,7 +3,7 @@ ;;;; Created: Fri Apr 25 06:59:22 2003 ;;;; Contains: Error case tests for DEFCLASS -(in-package :cl-test) + ;;; I created some redundant tests by accident. This list of ;;; tests could be reduced in size. diff --git a/defclass-forward-reference.lsp b/objects/defclass-forward-reference.lsp similarity index 99% rename from defclass-forward-reference.lsp rename to objects/defclass-forward-reference.lsp index 1013bb4dbe561def3bb9486ca12d65ca95c1bb31..20af04ade425b0cc0ec7f89e674b8afd689a157a 100644 --- a/defclass-forward-reference.lsp +++ b/objects/defclass-forward-reference.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Apr 2 22:53:27 2003 ;;;; Contains: Tests for definitions of classes with forward references -(in-package :cl-test) + (deftest defclass.forward-ref.1 (let ((c1 (gensym)) diff --git a/defclass.lsp b/objects/defclass.lsp similarity index 94% rename from defclass.lsp rename to objects/defclass.lsp index 2aeb74bcbd66495267f6ae7e5e52fc1900e4afcf..594e66e0b63be40ca00177d0a84b219497d3113d 100644 --- a/defclass.lsp +++ b/objects/defclass.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Mar 24 03:39:54 2003 ;;;; Contains: Tests of DEFCLASS -(in-package :cl-test) + (defclass-with-tests defclass-1 nil nil) (defclass-with-tests defclass-2 nil (slot1 slot2 slot3)) diff --git a/defgeneric-method-combination-and.lsp b/objects/defgeneric-method-combination-and.lsp similarity index 99% rename from defgeneric-method-combination-and.lsp rename to objects/defgeneric-method-combination-and.lsp index af5396cabdfe7e1021774c7eb2966925099c993d..8b21d7afcde8cca02a4731dcd8108fe063ae7b64 100644 --- a/defgeneric-method-combination-and.lsp +++ b/objects/defgeneric-method-combination-and.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 24 21:31:55 2003 ;;;; Contains: Tests of DEFGENERIC with :method-combination AND -(in-package :cl-test) + (declaim (special *x*)) diff --git a/defgeneric-method-combination-append.lsp b/objects/defgeneric-method-combination-append.lsp similarity index 99% rename from defgeneric-method-combination-append.lsp rename to objects/defgeneric-method-combination-append.lsp index 38987d7ba72b6b95806b20a36137b8c5a7791ce0..97032e567180cf87f7de38b915015854f1a8a3ba 100644 --- a/defgeneric-method-combination-append.lsp +++ b/objects/defgeneric-method-combination-append.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 24 21:31:55 2003 ;;;; Contains: Tests of DEFGENERIC with :method-combination APPEND -(in-package :cl-test) + (declaim (special *x*)) diff --git a/defgeneric-method-combination-aux.lsp b/objects/defgeneric-method-combination-aux.lsp similarity index 95% rename from defgeneric-method-combination-aux.lsp rename to objects/defgeneric-method-combination-aux.lsp index c2a8edd96e34a93d7717f3f801f3324334895193..f0d75038b003bdbb09e0cca4358f687fe2079a78 100644 --- a/defgeneric-method-combination-aux.lsp +++ b/objects/defgeneric-method-combination-aux.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed May 28 14:02:42 2003 ;;;; Contains: Class definitions for defgeneric-method-combination-*.lsp -(in-package :cl-test) + (defclass dgmc-class-01 () ()) (defclass dgmc-class-02 (dgmc-class-01) ()) diff --git a/defgeneric-method-combination-list.lsp b/objects/defgeneric-method-combination-list.lsp similarity index 99% rename from defgeneric-method-combination-list.lsp rename to objects/defgeneric-method-combination-list.lsp index 860285a3bcef19e4f831af50f82af3306cb99214..8ad8755ed02d30483171e407ea4fa1def6891c5d 100644 --- a/defgeneric-method-combination-list.lsp +++ b/objects/defgeneric-method-combination-list.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 24 21:31:55 2003 ;;;; Contains: Tests of DEFGENERIC with :method-combination LIST -(in-package :cl-test) + (declaim (special *x*)) diff --git a/defgeneric-method-combination-max.lsp b/objects/defgeneric-method-combination-max.lsp similarity index 99% rename from defgeneric-method-combination-max.lsp rename to objects/defgeneric-method-combination-max.lsp index b966d0b413867ecea65dfc87fdb8fb46126a742b..3275234fff512c59ea9334df6fb57d904cbd4695 100644 --- a/defgeneric-method-combination-max.lsp +++ b/objects/defgeneric-method-combination-max.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 24 21:31:55 2003 ;;;; Contains: Tests of DEFGENERIC with :method-combination MAX -(in-package :cl-test) + (declaim (special *x*)) diff --git a/defgeneric-method-combination-min.lsp b/objects/defgeneric-method-combination-min.lsp similarity index 99% rename from defgeneric-method-combination-min.lsp rename to objects/defgeneric-method-combination-min.lsp index 2aca3715945cd038713e1db93b76d4ccced63333..41b9e38b445399f830f2326d163b497d8be0112f 100644 --- a/defgeneric-method-combination-min.lsp +++ b/objects/defgeneric-method-combination-min.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 24 21:31:55 2003 ;;;; Contains: Tests of DEFGENERIC with :method-combination MIN -(in-package :cl-test) + (declaim (special *x*)) diff --git a/defgeneric-method-combination-nconc.lsp b/objects/defgeneric-method-combination-nconc.lsp similarity index 99% rename from defgeneric-method-combination-nconc.lsp rename to objects/defgeneric-method-combination-nconc.lsp index 3d39aee60445072bd0ac9466148a79f6ea2a778b..f9a7d34f774245fa92f3babe72bf8fd15a68f153 100644 --- a/defgeneric-method-combination-nconc.lsp +++ b/objects/defgeneric-method-combination-nconc.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 24 21:31:55 2003 ;;;; Contains: Tests of DEFGENERIC with :method-combination NCONC -(in-package :cl-test) + (declaim (special *x*)) diff --git a/defgeneric-method-combination-or.lsp b/objects/defgeneric-method-combination-or.lsp similarity index 99% rename from defgeneric-method-combination-or.lsp rename to objects/defgeneric-method-combination-or.lsp index 9b00e3ec3b831e714ef6f01be73d4e9df1d8955b..839bd0315da8cef0506e139b0d7f5d5c0fb039a6 100644 --- a/defgeneric-method-combination-or.lsp +++ b/objects/defgeneric-method-combination-or.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 24 21:31:55 2003 ;;;; Contains: Tests of DEFGENERIC with :method-combination OR -(in-package :cl-test) + (declaim (special *x*)) diff --git a/defgeneric-method-combination-plus.lsp b/objects/defgeneric-method-combination-plus.lsp similarity index 99% rename from defgeneric-method-combination-plus.lsp rename to objects/defgeneric-method-combination-plus.lsp index 4959d6ac959f1a13618fc6cb0be06d77ae31c8e6..74b68f6365414b3ccfc5b0938f65fea28be8b76c 100644 --- a/defgeneric-method-combination-plus.lsp +++ b/objects/defgeneric-method-combination-plus.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 24 21:31:55 2003 ;;;; Contains: Tests of DEFGENERIC with :method-combination + -(in-package :cl-test) + (declaim (special *x*)) diff --git a/defgeneric-method-combination-progn.lsp b/objects/defgeneric-method-combination-progn.lsp similarity index 99% rename from defgeneric-method-combination-progn.lsp rename to objects/defgeneric-method-combination-progn.lsp index c90af10eea70483702663bb69151ba788e7dc0ef..64293eac74b93df777117dc8f90e0850ba479312 100644 --- a/defgeneric-method-combination-progn.lsp +++ b/objects/defgeneric-method-combination-progn.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 24 21:31:55 2003 ;;;; Contains: Tests of DEFGENERIC with :method-combination OR -(in-package :cl-test) + (declaim (special *x*)) diff --git a/defgeneric.lsp b/objects/defgeneric.lsp similarity index 99% rename from defgeneric.lsp rename to objects/defgeneric.lsp index 327e0532d9073cef0272fe2ef811ae90dbd71962..4faf5c1f5a0193078644882527c8b7ca1dbc3dea 100644 --- a/defgeneric.lsp +++ b/objects/defgeneric.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 17 20:55:50 2003 ;;;; Contains: Tests of DEFGENERIC -(in-package :cl-test) + ;;; Various error cases diff --git a/define-method-combination-long-form.lsp b/objects/define-method-combination-long-form.lsp similarity index 99% rename from define-method-combination-long-form.lsp rename to objects/define-method-combination-long-form.lsp index 894333f221cb269957aeef591f0999c79b2b2ea1..a5c3e8c4c9e7a8c8142ff2d3a163e5654114c130 100644 --- a/define-method-combination-long-form.lsp +++ b/objects/define-method-combination-long-form.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jul 13 08:26:41 2003 ;;;; Contains: Tests of DEFINE-METHOD-COMBINATION (long form) -(in-package :cl-test) + (eval-when (:load-toplevel :compile-toplevel :execute) (report-and-ignore-errors diff --git a/define-method-combination.lsp b/objects/define-method-combination.lsp similarity index 99% rename from define-method-combination.lsp rename to objects/define-method-combination.lsp index 2b7dc924bc658a9dc481b3c9a3269522b8293483..fa6c67f2d45d1a034cb5dc05896ce7de523608ea 100644 --- a/define-method-combination.lsp +++ b/objects/define-method-combination.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jun 15 10:49:39 2003 ;;;; Contains: Tests of DEFINE-METHOD-COMBINATION -(in-package :cl-test) + (defclass dmc-class-01a () ()) (defclass dmc-class-01b (dmc-class-01a) ()) diff --git a/defmethod.lsp b/objects/defmethod.lsp similarity index 99% rename from defmethod.lsp rename to objects/defmethod.lsp index 6d2e31780f6ee53cb8d0f5e66711721c994b9498..afde8838ca2c4891f5dfa808ebfd683ad04f2553 100644 --- a/defmethod.lsp +++ b/objects/defmethod.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Jun 9 07:02:53 2005 ;;;; Contains: Separate tests for DEFMETHOD -(in-package :cl-test) + (deftest defmethod.1 (let ((sym (gensym))) diff --git a/ensure-generic-function.lsp b/objects/ensure-generic-function.lsp similarity index 99% rename from ensure-generic-function.lsp rename to objects/ensure-generic-function.lsp index d1c06617400417437214da0bf848bb9e12e9634d..0c21da70e7b42d868f8e35a6fe4a33ffc02cfc38 100644 --- a/ensure-generic-function.lsp +++ b/objects/ensure-generic-function.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Mar 27 21:29:53 2003 ;;;; Contains: Tests for ENSURE-GENERIC-FUNCTION -(in-package :cl-test) + (deftest ensure-generic-function.1 (if (typep #'car 'generic-function) diff --git a/find-class.lsp b/objects/find-class.lsp similarity index 99% rename from find-class.lsp rename to objects/find-class.lsp index d897ed3a3a041ade9ecff663810df36d50027600..5196571b0f442aa20f53e82c9bbc49813f37320e 100644 --- a/find-class.lsp +++ b/objects/find-class.lsp @@ -5,7 +5,7 @@ ;; find-class is also tested in numerous other places. -(in-package :cl-test) + (deftest find-class.1 (loop for name in *cl-types-that-are-classes-symbols* diff --git a/find-method.lsp b/objects/find-method.lsp similarity index 99% rename from find-method.lsp rename to objects/find-method.lsp index 72f1a75de669df6cb0a87b68cc461005b1e18403..41abcf010253caa5c997355cf46f6ad63d982a36 100644 --- a/find-method.lsp +++ b/objects/find-method.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Jun 3 21:12:03 2003 ;;;; Contains: Tests for FIND-METHOD -(in-package :cl-test) + (eval-when (:load-toplevel :compile-toplevel :execute) (report-and-ignore-errors diff --git a/objects/load.lsp b/objects/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..8c7692c5cc751f1abad44d0733a81211f0d33126 --- /dev/null +++ b/objects/load.lsp @@ -0,0 +1,64 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Mon Mar 24 03:39:09 2003 +;;;; Contains: Loader for CLOS-related test files + +(compile-and-load "ANSI-TESTS:AUX;defclass-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "defclass.lsp") + (load "defclass-01.lsp") + (load "defclass-02.lsp") + (load "defclass-03.lsp") + (load "defclass-errors.lsp") + (load "defclass-forward-reference.lsp") + (load "ensure-generic-function.lsp") + (load "allocate-instance.lsp") + (load "reinitialize-instance.lsp") + (load "shared-initialize.lsp") + (load "change-class.lsp") + (load "update-instance-for-different-class.lsp") + (load "slot-boundp.lsp") + (load "slot-exists-p.lsp") + (load "slot-makunbound.lsp") + (load "slot-missing.lsp") + (load "slot-unbound.lsp") + (load "slot-value.lsp") + (load "method-qualifiers.lsp") + (load "no-applicable-method.lsp") + (load "no-next-method.lsp") + (load "remove-method.lsp") + (load "make-instance.lsp") + (load "make-instances-obsolete.lsp") + (load "make-load-form.lsp") + (load "make-load-form-saving-slots.lsp") + (load "with-accessors.lsp") + (load "with-slots.lsp") + (load "defgeneric.lsp") + (load "defgeneric-method-combination-aux.lsp") + (load "defgeneric-method-combination-plus.lsp") + (load "defgeneric-method-combination-append.lsp") + (load "defgeneric-method-combination-nconc.lsp") + (load "defgeneric-method-combination-list.lsp") + (load "defgeneric-method-combination-max.lsp") + (load "defgeneric-method-combination-min.lsp") + (load "defgeneric-method-combination-and.lsp") + (load "defgeneric-method-combination-or.lsp") + (load "defgeneric-method-combination-progn.lsp") + ;; (load "defgeneric-method-combination-standard.lsp") + (load "find-class.lsp") + (load "next-method-p.lsp") + (load "call-next-method.lsp") + (load "compute-applicable-methods.lsp") + (load "define-method-combination.lsp") + ;; (load "define-method-combination-long-form.lsp") + (load "find-method.lsp") + (load "add-method.lsp") + (load "class-name.lsp") + (load "class-of.lsp") + (load "unbound-slot.lsp") + (load "defmethod.lsp")) diff --git a/make-instance.lsp b/objects/make-instance.lsp similarity index 99% rename from make-instance.lsp rename to objects/make-instance.lsp index baa981c6e12c0c6458626c90238b1f0ab33b538e..e71e82ef706d9b932dbf46dab4f9aa4d15bec1fe 100644 --- a/make-instance.lsp +++ b/objects/make-instance.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon May 12 21:19:36 2003 ;;;; Contains: Tests of MAKE-INSTANCE -(in-package :cl-test) + ;;; MAKE-INSTANCE is used in many other tests as well diff --git a/make-instances-obsolete.lsp b/objects/make-instances-obsolete.lsp similarity index 98% rename from make-instances-obsolete.lsp rename to objects/make-instances-obsolete.lsp index 4cc14f04b93e0143bb757dcc5dbf1678a212e4c5..81d0e25f2efea8012b409f962c69f396d77b0010 100644 --- a/make-instances-obsolete.lsp +++ b/objects/make-instances-obsolete.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 17 08:12:35 2003 ;;;; Contains: Tests of MAKE-INSTANCES-OBSOLETE -(in-package :cl-test) + (defclass make-instances-obsolete-class-01 () ((a :initarg :a) diff --git a/make-load-form-saving-slots.lsp b/objects/make-load-form-saving-slots.lsp similarity index 99% rename from make-load-form-saving-slots.lsp rename to objects/make-load-form-saving-slots.lsp index 8487f428e1cfaea809be588df2ad70d78bf69d22..008405a0dc5763192e879757fc3d230e44b8de32 100644 --- a/make-load-form-saving-slots.lsp +++ b/objects/make-load-form-saving-slots.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 17 11:54:54 2003 ;;;; Contains: Tests of MAKE-LOAD-FORM-SAVING-SLOTS -(in-package :cl-test) + ;;; These are tests of MAKE-LOAD-FORM-SAVING-SLOTS proper; tests involving ;;; file compilation will be located elsewhere. diff --git a/make-load-form.lsp b/objects/make-load-form.lsp similarity index 99% rename from make-load-form.lsp rename to objects/make-load-form.lsp index 22fb03cc6e5c71bf2d7fe7791e641c6bc47e6e65..a1c881ba73948d30d54704e3c161fb48e9e7df25 100644 --- a/make-load-form.lsp +++ b/objects/make-load-form.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 17 09:16:20 2003 ;;;; Contains: Tests of MAKE-LOAD-FORM -(in-package :cl-test) + ;;; These tests are just of MAKE-LOAD-FORM itself; tests of file compilation ;;; that depend on MAKE-LOAD-FORM will be found elsewhere. diff --git a/method-qualifiers.lsp b/objects/method-qualifiers.lsp similarity index 98% rename from method-qualifiers.lsp rename to objects/method-qualifiers.lsp index 0e3e2645953ead20f2a3cbfa4a57bc8840cb5985..dbe74880aae8ba879159fc2e2ccfb345a4fb48bd 100644 --- a/method-qualifiers.lsp +++ b/objects/method-qualifiers.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 11 07:14:12 2003 ;;;; Contains: Tests of METHOD-QUALIFIERS -(in-package :cl-test) + (defgeneric mq-generic-function (x)) diff --git a/next-method-p.lsp b/objects/next-method-p.lsp similarity index 98% rename from next-method-p.lsp rename to objects/next-method-p.lsp index 1cbbda5f3edfb1d81681daabfea8df327ca39d5d..113d936c722c145f73fe5617153fda0cd26aaad9 100644 --- a/next-method-p.lsp +++ b/objects/next-method-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 31 08:04:45 2003 ;;;; Contains: Tests of NEXT-METHOD-P -(in-package :cl-test) + (defgeneric nmp-gf-01 (x) (:method ((x integer)) (notnot-mv (next-method-p))) diff --git a/no-applicable-method.lsp b/objects/no-applicable-method.lsp similarity index 95% rename from no-applicable-method.lsp rename to objects/no-applicable-method.lsp index 3f2f44abb7912449f3dac1429d269829c1ab6fe5..d0f09d8b2241aa952076d9d5335a88f340905a44 100644 --- a/no-applicable-method.lsp +++ b/objects/no-applicable-method.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 11 13:46:44 2003 ;;;; Contains: Tests of NO-APPLICABLE-METHOD -(in-package :cl-test) + (defgeneric no-app-meth-gf-01 (x)) diff --git a/no-next-method.lsp b/objects/no-next-method.lsp similarity index 98% rename from no-next-method.lsp rename to objects/no-next-method.lsp index 86fe61ec30327150c3f9112e9a56bdefaa0c2f0b..a70098ff3cd1b51f8429bb6b997f79eb297440c5 100644 --- a/no-next-method.lsp +++ b/objects/no-next-method.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 11 14:41:50 2003 ;;;; Contains: Tests of NO-NEXT-METHOD -(in-package :cl-test) + (defgeneric no-next-meth-gf-01 (x)) diff --git a/reinitialize-instance.lsp b/objects/reinitialize-instance.lsp similarity index 99% rename from reinitialize-instance.lsp rename to objects/reinitialize-instance.lsp index 952b034aabee0fad3b8f4cf8120d5602aedf2d47..6c486f78a0120cbf0eb5bb1d08c0f486754b533f 100644 --- a/reinitialize-instance.lsp +++ b/objects/reinitialize-instance.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Apr 28 21:56:47 2003 ;;;; Contains: Tests for REINITIALIZE-INSTANCE -(in-package :cl-test) + ;;; Many of the classes used here are defined in defclass-??.lsp diff --git a/remove-method.lsp b/objects/remove-method.lsp similarity index 99% rename from remove-method.lsp rename to objects/remove-method.lsp index 89b4812f28c6bf3d655f2a9af68dbb908e022388..5a7e31f0a6827e3f45f15df0f04d301059bc6d48 100644 --- a/remove-method.lsp +++ b/objects/remove-method.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun May 11 19:53:37 2003 ;;;; Contains: Tests of REMOVE-METHOD -(in-package :cl-test) + (defparameter *remove-meth-gf-01* (defgeneric remove-meth-gf-01 (x))) diff --git a/shared-initialize.lsp b/objects/shared-initialize.lsp similarity index 99% rename from shared-initialize.lsp rename to objects/shared-initialize.lsp index 34ffa8fcaf75e2068e54ee4ef6469bcc05bea81a..db16232dab18c60f054869b09e76a11c5cba4246 100644 --- a/shared-initialize.lsp +++ b/objects/shared-initialize.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Apr 29 04:09:06 2003 ;;;; Contains: Tests of SHARED-INITIALIZE -(in-package :cl-test) + (defclass shared-init-class-01 () ((a :initform 'x :initarg :a) diff --git a/slot-boundp.lsp b/objects/slot-boundp.lsp similarity index 99% rename from slot-boundp.lsp rename to objects/slot-boundp.lsp index b6dfb9bfc11ba89f0c62430090df050566e68a0d..fd395099cdfebacdc036b32338f8cf7595cbfa04 100644 --- a/slot-boundp.lsp +++ b/objects/slot-boundp.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue May 6 05:53:32 2003 ;;;; Contains: Tests of SLOT-BOUNDP -(in-package :cl-test) + ;;; SLOT-BOUNDP is extensively tested in other files as well diff --git a/slot-exists-p.lsp b/objects/slot-exists-p.lsp similarity index 99% rename from slot-exists-p.lsp rename to objects/slot-exists-p.lsp index 08a36d718404ac1ba353b99f44a1c5d4bf3dedfb..e64d86a007a19cfe2428e5a71049eee44d8018bc 100644 --- a/slot-exists-p.lsp +++ b/objects/slot-exists-p.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 10 09:39:01 2003 ;;;; Contains: Tests of SLOT-EXISTS-P -(in-package :cl-test) + ;;; This function is also tested incidentally in many other files diff --git a/slot-makunbound.lsp b/objects/slot-makunbound.lsp similarity index 99% rename from slot-makunbound.lsp rename to objects/slot-makunbound.lsp index 9ba9b5414fea322726ab8f198cb5f02316689aa0..40cb38ad04d32267c1df3c8d0c671263e10468c5 100644 --- a/slot-makunbound.lsp +++ b/objects/slot-makunbound.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 10 14:39:01 2003 ;;;; Contains: Tests for SLOT-MAKUNBOUND -(in-package :cl-test) + ;;; This function is heavily tested in other files as well diff --git a/slot-missing.lsp b/objects/slot-missing.lsp similarity index 98% rename from slot-missing.lsp rename to objects/slot-missing.lsp index 65e7f4664670891597a688a143f7c3d45377a541..c78027718e98fc6aff5e28620adbc06cff2f3137 100644 --- a/slot-missing.lsp +++ b/objects/slot-missing.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jun 15 06:03:58 2003 ;;;; Contains: Tests of SLOT-MISSING -(in-package :cl-test) + (defparameter *slot-missing-class-01-var* nil) diff --git a/slot-unbound.lsp b/objects/slot-unbound.lsp similarity index 98% rename from slot-unbound.lsp rename to objects/slot-unbound.lsp index 657c57a9ce70adf34a6daea53d16bd85fdd1b67e..e7dcadc55935cda528b8d8175bdd70aefd58999b 100644 --- a/slot-unbound.lsp +++ b/objects/slot-unbound.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Jun 15 06:57:23 2003 ;;;; Contains: Tests for SLOT-UNBOUND -(in-package :cl-test) + (defclass slot-unbound-class-01 () ((a :reader sunb-a) diff --git a/slot-value.lsp b/objects/slot-value.lsp similarity index 99% rename from slot-value.lsp rename to objects/slot-value.lsp index 001a25940b82df5ce7311a519f05e99470738572..13568dccc0d3c1315174351b1425d652fe5bee97 100644 --- a/slot-value.lsp +++ b/objects/slot-value.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 10 16:16:59 2003 ;;;; Contains: Tests of SLOT-VALUE -(in-package :cl-test) + ;;; SLOT-VALUE is used extensively elsewhere. diff --git a/unbound-slot.lsp b/objects/unbound-slot.lsp similarity index 97% rename from unbound-slot.lsp rename to objects/unbound-slot.lsp index 2da3af5ce082698942fcee07704ff40c4e06dbec..4d911592e6d9d04946faafac8cfacc3eb3fb0e9f 100644 --- a/unbound-slot.lsp +++ b/objects/unbound-slot.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Jun 4 20:14:26 2003 ;;;; Contains: Tests for UNBOUND-SLOT, UNBOUND-SLOT-INSTANCE -(in-package :cl-test) + (defclass ubs-class-01 () ((a :initarg :a))) diff --git a/update-instance-for-different-class.lsp b/objects/update-instance-for-different-class.lsp similarity index 99% rename from update-instance-for-different-class.lsp rename to objects/update-instance-for-different-class.lsp index c8d4773d00fba87f8652caa97eca19b56778a695..58b1089521a759bb0480a7cf8a26f798f2637de4 100644 --- a/update-instance-for-different-class.lsp +++ b/objects/update-instance-for-different-class.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon May 5 19:32:56 2003 ;;;; Contains: Tests for UPDATE-INSTANCE-FOR-DIFFERENT-CLASS -(in-package :cl-test) + (defclass uifdc-class-01a () ((a :initarg :a) (b :initarg :b))) (defclass uifdc-class-01b () (a b)) diff --git a/with-accessors.lsp b/objects/with-accessors.lsp similarity index 99% rename from with-accessors.lsp rename to objects/with-accessors.lsp index 3e8667b1ad649eff0e811f53989dfb7156d92378..858f5efef207926197797c03d56c88b8e7cd24c2 100644 --- a/with-accessors.lsp +++ b/objects/with-accessors.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 17 17:07:29 2003 ;;;; Contains: Tests of WITH-ACCESSORS -(in-package :cl-test) + (deftest with-accessors.1 (with-accessors () nil) diff --git a/with-slots.lsp b/objects/with-slots.lsp similarity index 99% rename from with-slots.lsp rename to objects/with-slots.lsp index 455de611a4ecfa63f910fa3a260cdd5b760ba0d9..d86deab07e8d05a0019ca0748269843f914a3253 100644 --- a/with-slots.lsp +++ b/objects/with-slots.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat May 17 18:04:10 2003 ;;;; Contains: Tests of WITH-SLOTS -(in-package :cl-test) + (deftest with-slots.1 (with-slots () nil) diff --git a/defpackage.lsp b/packages/defpackage.lsp similarity index 99% rename from defpackage.lsp rename to packages/defpackage.lsp index e46958bef00309e1ba47e118ec4dfbe9627eb303..893a52edf0b93e0a5c26c3eb98f21ef7042f1513 100644 --- a/defpackage.lsp +++ b/packages/defpackage.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 25 08:09:18 1998 ;;;; Contains: Tests of DEFPACKAGE -(in-package :cl-test) -(compile-and-load "package-aux.lsp") + + (declaim (optimize (safety 3))) diff --git a/delete-package.lsp b/packages/delete-package.lsp similarity index 99% rename from delete-package.lsp rename to packages/delete-package.lsp index c153e76186fdfd52e2657743ddae4fb12c8ea972..0999067d130fabf08e0f25bab9a34dbbfe49192e 100644 --- a/delete-package.lsp +++ b/packages/delete-package.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 08:01:58 1998 ;;;; Contains: Tests of DELETE-PACKAGE -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; delete-package diff --git a/do-all-symbols.lsp b/packages/do-all-symbols.lsp similarity index 99% rename from do-all-symbols.lsp rename to packages/do-all-symbols.lsp index 869bc38b9b4ef266f8186b339049cde7e192c428..baa0c8e2ea204612fd0ac0ddec77b1cfd2919aea 100644 --- a/do-all-symbols.lsp +++ b/packages/do-all-symbols.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Feb 21 18:27:22 2004 ;;;; Contains: Tests of DO-ALL-SYMBOLS -(in-package :cl-test) + (def-macro-test do-all-symbols.error.1 (do-all-symbols (x))) diff --git a/do-external-symbols.lsp b/packages/do-external-symbols.lsp similarity index 98% rename from do-external-symbols.lsp rename to packages/do-external-symbols.lsp index 41f2c631ad4b138ec18550ff9b5b35b8f1f30b76..af45442f71985be17cb8c3e23c240450ab52eb68 100644 --- a/do-external-symbols.lsp +++ b/packages/do-external-symbols.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Feb 21 18:26:08 2004 ;;;; Contains: Tests of DO-EXTERNAL-SYMBOLS -(in-package :cl-test) -(compile-and-load "package-aux.lsp") + + (declaim (optimize (safety 3))) diff --git a/do-symbols.lsp b/packages/do-symbols.lsp similarity index 98% rename from do-symbols.lsp rename to packages/do-symbols.lsp index 947cd4965c9d3ae802c3bf03ce791e55b65df2c7..0b484d414117ab4204a498edf0c09057f553dfa4 100644 --- a/do-symbols.lsp +++ b/packages/do-symbols.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Feb 21 18:24:59 2004 ;;;; Contains: Tests of DO-SYMBOLS -(in-package :cl-test) -(compile-and-load "package-aux.lsp") + + (declaim (optimize (safety 3))) diff --git a/export.lsp b/packages/export.lsp similarity index 99% rename from export.lsp rename to packages/export.lsp index cfba7cfdb05c19027d2ddfea840f11469702fcee..12730af2b7c3930ce8d4421b0f2d2851723465c9 100644 --- a/export.lsp +++ b/packages/export.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 07:59:45 1998 ;;;; Contains: Tests of EXPORT -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/find-all-symbols.lsp b/packages/find-all-symbols.lsp similarity index 99% rename from find-all-symbols.lsp rename to packages/find-all-symbols.lsp index 2ee5e13681d09a3f41f5722ff8ed121ee2a43c58..07af26faa7c630d22b54933b3409cbd4d82ba204 100644 --- a/find-all-symbols.lsp +++ b/packages/find-all-symbols.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 22 07:10:22 2004 ;;;; Contains: Tests for FIND-ALL-SYMBOLS -(in-package :cl-test) + (deftest find-all-symbols.1 (let ((all-packages (list-all-packages))) diff --git a/find-package.lsp b/packages/find-package.lsp similarity index 99% rename from find-package.lsp rename to packages/find-package.lsp index fa44b0a3b630c08d17c57c9c7917b760bef71433..55cb4da48bc2a8d96456b4773c3bcb14d31fe0f0 100644 --- a/find-package.lsp +++ b/packages/find-package.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 07:50:39 1998 ;;;; Contains: Tests for FIND-PACKAGE -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/find-symbol.lsp b/packages/find-symbol.lsp similarity index 98% rename from find-symbol.lsp rename to packages/find-symbol.lsp index 59544757a60a4887e8c0af36c8b37637701f4a0d..7aff94bae97a338aa6332c0c62de5c6b728a5c90 100644 --- a/find-symbol.lsp +++ b/packages/find-symbol.lsp @@ -3,9 +3,7 @@ ;;;; Created: Sat Apr 25 07:49:34 1998 ;;;; Contains: Tests for FIND-SYMBOL -(in-package :cl-test) -(compile-and-load "packages-00.lsp") ;;(declaim (optimize (safety 3))) diff --git a/import.lsp b/packages/import.lsp similarity index 99% rename from import.lsp rename to packages/import.lsp index 43dabf519820c093dd6d743e5e448e08da25bf0b..c0c03cc070c792ba1f415869dc7d54277ae83210 100644 --- a/import.lsp +++ b/packages/import.lsp @@ -3,9 +3,9 @@ ;;;; Created: Thu Feb 19 07:06:48 2004 ;;;; Contains: Tests of IMPORT -(in-package :cl-test) -(compile-and-load "package-aux.lsp") + + ;;; Create a package name that does not collide with an existing package ;;; name or nickname diff --git a/in-package.lsp b/packages/in-package.lsp similarity index 98% rename from in-package.lsp rename to packages/in-package.lsp index 3f80093d434f8391c26da9acd7eaaa6bde9823ef..67b9c467616ba47b76c8851030086e8aa9a36f57 100644 --- a/in-package.lsp +++ b/packages/in-package.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 08:06:03 1998 ;;;; Contains: Tests of IN-PACKAGE -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -55,7 +55,7 @@ package-error) (def-macro-test in-package.error.1 - (in-package :cl-test)) + (in-package :cl-test)) (defmacro def-in-package-test (test-name name-form) `(deftest ,test-name diff --git a/intern.lsp b/packages/intern.lsp similarity index 99% rename from intern.lsp rename to packages/intern.lsp index dd85da9afd0594fb7cdb1191d0d315f0c949707c..930307e0e45e1e8fec0f69a4ce4a9b864b970de2 100644 --- a/intern.lsp +++ b/packages/intern.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 07:59:10 1998 ;;;; Contains: Tests of INTERN -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/keyword.lsp b/packages/keyword.lsp similarity index 99% rename from keyword.lsp rename to packages/keyword.lsp index cbc23ab6efec0e6119f207ee7036e5e1f7b32320..38c503fda6a3b16e225923d29e130af289e7542f 100644 --- a/keyword.lsp +++ b/packages/keyword.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 22 06:53:55 2004 ;;;; Contains: Tests of the KEYWORD package -(in-package :cl-test) + ;; Check that each keyword satisfies keywordp diff --git a/list-all-packages.lsp b/packages/list-all-packages.lsp similarity index 98% rename from list-all-packages.lsp rename to packages/list-all-packages.lsp index 2eb8ca8fa9e3112604ec73d105e3392e217c1389..3b9a07abee3bb25d7f141e09fc029902b6369c9c 100644 --- a/list-all-packages.lsp +++ b/packages/list-all-packages.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Feb 21 17:47:37 2004 ;;;; Contains: Tests of LIST-ALL-PACKAGES -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/packages/load.lsp b/packages/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..9245c97da285d42e9f9c1408f285efa1750ed02e --- /dev/null +++ b/packages/load.lsp @@ -0,0 +1,45 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Sun Oct 6 00:32:56 2002 +;;;; Contains: Loader for files containing package tests + +(compile-and-load "ANSI-TESTS:AUX;packages00-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;package-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "find-symbol.lsp") + (load "find-all-symbols.lsp") + (load "find-package.lsp") + (load "list-all-packages.lsp") + (load "package-name.lsp") + (load "package-nicknames.lsp") + (load "intern.lsp") + (load "export.lsp") + (load "rename-package.lsp") + (load "shadow.lsp") + (load "shadowing-import.lsp") + (load "delete-package.lsp") + (load "make-package.lsp") + (load "with-package-iterator.lsp") + (load "unexport.lsp") + (load "unintern.lsp") + (load "in-package.lsp") + (load "unuse-package.lsp") + (load "use-package.lsp") + (load "defpackage.lsp") + (load "do-symbols.lsp") + (load "do-external-symbols.lsp") + (load "do-all-symbols.lsp") + (load "packagep.lsp") + (load "package-error.lsp") + (load "package-error-package.lsp") + (load "keyword.lsp") + (load "package-shadowing-symbols.lsp") + (load "package-use-list.lsp") + (load "package-used-by-list.lsp") + (load "import.lsp") +) diff --git a/make-package.lsp b/packages/make-package.lsp similarity index 99% rename from make-package.lsp rename to packages/make-package.lsp index a5234a0dc81163150a81cf4e614673139f03e64a..da51bda58d7751ee328100a3d52b7f05b77d49b8 100644 --- a/make-package.lsp +++ b/packages/make-package.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 08:02:43 1998 ;;;; Contains: Tests of MAKE-PACKAGE -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/package-error-package.lsp b/packages/package-error-package.lsp similarity index 98% rename from package-error-package.lsp rename to packages/package-error-package.lsp index 1ceb58d28ade289f2c1aabc9e7e5da5a8f0e3f5f..8c9a1acfd1fe38f6371ea18e0b76a7b40c68fed9 100644 --- a/package-error-package.lsp +++ b/packages/package-error-package.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 22 06:52:56 2004 ;;;; Contains: Tests of PACKAGE-ERROR-PACKAGE -(in-package :cl-test) + (deftest package-error-package.1 (eqt (find-package (package-error-package diff --git a/package-error.lsp b/packages/package-error.lsp similarity index 96% rename from package-error.lsp rename to packages/package-error.lsp index 864c47735ff2af6b996c734c2022dafef46f22f5..a364c1b94cf56174e8277780868cbd54302bc99e 100644 --- a/package-error.lsp +++ b/packages/package-error.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 22 06:52:21 2004 ;;;; Contains: Tests of the condition PACKAGE-ERROR -(in-package :cl-test) + (deftest package-error.1 (not diff --git a/package-name.lsp b/packages/package-name.lsp similarity index 99% rename from package-name.lsp rename to packages/package-name.lsp index 4bdde92a51c058cf106893ff996a3d3a414300ae..fd486e35c5036128a7c37952c5df0507f617609f 100644 --- a/package-name.lsp +++ b/packages/package-name.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Feb 21 17:48:05 2004 ;;;; Contains: Tests of PACKAGE-NAME -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/package-nicknames.lsp b/packages/package-nicknames.lsp similarity index 99% rename from package-nicknames.lsp rename to packages/package-nicknames.lsp index 992d5a761d6e2a43ec049db81607bc112c58d4b8..f951162d0e50f1d43bf27813ca756f214825659a 100644 --- a/package-nicknames.lsp +++ b/packages/package-nicknames.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 07:51:26 1998 ;;;; Contains: Tests of PACKAGE-NICKNAMES -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/package-shadowing-symbols.lsp b/packages/package-shadowing-symbols.lsp similarity index 99% rename from package-shadowing-symbols.lsp rename to packages/package-shadowing-symbols.lsp index 2445b89beae5c61f4fac0fb063e3eea8aa10c4b4..df62396c2bf0b75d16fce03f1916c64673976ded 100644 --- a/package-shadowing-symbols.lsp +++ b/packages/package-shadowing-symbols.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 22 06:55:17 2004 ;;;; Contains: Tests of PACKAGE-SHADOWING-SYMBOLS -(in-package :cl-test) + ;;; Most tests of this function are in files for other package-related operators diff --git a/package-use-list.lsp b/packages/package-use-list.lsp similarity index 98% rename from package-use-list.lsp rename to packages/package-use-list.lsp index 5a6ec89cd73beb1daa1871c6baa0937c082d54f0..e77f92f9a1781866b23dd68f621a18f1c1f79aa1 100644 --- a/package-use-list.lsp +++ b/packages/package-use-list.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 22 06:55:56 2004 ;;;; Contains: Tests of PACKAGE-USE-LIST -(in-package :cl-test) + ;;; Most tests of this function are in files for other package-related operators diff --git a/package-used-by-list.lsp b/packages/package-used-by-list.lsp similarity index 98% rename from package-used-by-list.lsp rename to packages/package-used-by-list.lsp index 4bd5ba7a9cee5dbdbadf4f7eaa2f3bc9634130e0..26f27b196ae4b362ea925a74d4bf1158b2d5ad0d 100644 --- a/package-used-by-list.lsp +++ b/packages/package-used-by-list.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 22 06:56:28 2004 ;;;; Contains: Tests of PACKAGE-USED-BY-LIST -(in-package :cl-test) + ;;; Most tests of this function are in files for other package-related operators diff --git a/packagep.lsp b/packages/packagep.lsp similarity index 95% rename from packagep.lsp rename to packages/packagep.lsp index 94290b1628e684ee77125504bd6c5b4a263663b4..7fa6487de938de552690863e7cdcdbb76886c1e6 100644 --- a/packagep.lsp +++ b/packages/packagep.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Feb 22 06:51:38 2004 ;;;; Contains: Tests of PACKAGEP -(in-package :cl-test) + (deftest packagep.1 (check-type-predicate #'packagep 'package) diff --git a/rename-package.lsp b/packages/rename-package.lsp similarity index 99% rename from rename-package.lsp rename to packages/rename-package.lsp index f48fe8d4410f250e1680ddd38767a741efaea5e9..982e86dd9b6106f00c057cc743d1d6d8f279b760 100644 --- a/rename-package.lsp +++ b/packages/rename-package.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 08:00:28 1998 ;;;; Contains: Tests of RENAME-PACKAGE -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/shadow.lsp b/packages/shadow.lsp similarity index 99% rename from shadow.lsp rename to packages/shadow.lsp index 5269b5c3c6ce845ea171c836abaaee5ce4320356..6392b93f9b1a4a12bd0021f78f04e45d1388ffb8 100644 --- a/shadow.lsp +++ b/packages/shadow.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 08:01:20 1998 ;;;; Contains: Tests of SHADOW -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/shadowing-import.lsp b/packages/shadowing-import.lsp similarity index 99% rename from shadowing-import.lsp rename to packages/shadowing-import.lsp index c3963d506678ac89aec45af0c057145d9a5070b0..4e10d4e11b620f3fa82c268d03c2f0adb64b705c 100644 --- a/shadowing-import.lsp +++ b/packages/shadowing-import.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sun Aug 29 07:42:18 2004 ;;;; Contains: Tests for SHADOWING-IMPORT -(in-package :cl-test) + (deftest shadowing-import.1 (let ((name1 "TEST1") diff --git a/unexport.lsp b/packages/unexport.lsp similarity index 99% rename from unexport.lsp rename to packages/unexport.lsp index d8d7ae50d4673be1b2161b0f342266b10dd0f989..4b7408906ac2e9d7f7ef9349fe2e42999ee2816b 100644 --- a/unexport.lsp +++ b/packages/unexport.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 08:04:19 1998 ;;;; Contains: Tests of UNEXPORT -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/unintern.lsp b/packages/unintern.lsp similarity index 99% rename from unintern.lsp rename to packages/unintern.lsp index e6f2f34101a5aacf89a5711fcaff5637588d2b0b..7dd37c24df43da6b89163ab3cf0732e9e726bbf8 100644 --- a/unintern.lsp +++ b/packages/unintern.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Apr 25 08:04:56 1998 ;;;; Contains: Tests of UNINTERN -(in-package :cl-test) + (declaim (optimize (safety 3))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/unuse-package.lsp b/packages/unuse-package.lsp similarity index 99% rename from unuse-package.lsp rename to packages/unuse-package.lsp index 30fdf86c3d7df5d5d2f51c38eaef312b63846b5d..3c4c2fdc8d8dc6c725e6d36ee9cb33ec3e077165 100644 --- a/unuse-package.lsp +++ b/packages/unuse-package.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 25 08:06:48 1998 ;;;; Contains: Tests of UNUSE-PACKAGE -(in-package :cl-test) -(compile-and-load "package-aux.lsp") + + (declaim (optimize (safety 3))) diff --git a/use-package.lsp b/packages/use-package.lsp similarity index 99% rename from use-package.lsp rename to packages/use-package.lsp index 23a8f9a2d9af4b47a0b3f013924e9e331f920100..95be7398c7bb55d6e1cd3aab279da1b6f114b555 100644 --- a/use-package.lsp +++ b/packages/use-package.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Apr 25 08:08:41 1998 ;;;; Contains: Tests of USE-PACKAGE -(in-package :cl-test) -(compile-and-load "package-aux.lsp") + + (declaim (optimize (safety 3))) diff --git a/with-package-iterator.lsp b/packages/with-package-iterator.lsp similarity index 98% rename from with-package-iterator.lsp rename to packages/with-package-iterator.lsp index 810549284300a81ef862b40da6ed245731ab3a2f..6ec1905b7718598a81277c40a300664e035d74c8 100644 --- a/with-package-iterator.lsp +++ b/packages/with-package-iterator.lsp @@ -3,10 +3,10 @@ ;;;; Created: Sat Apr 25 08:03:36 1998 ;;;; Contains: Tests of WITH-PACKAGE-ITERATOR -(in-package :cl-test) + (declaim (optimize (safety 3))) -(compile-and-load "package-aux.lsp") + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; with-package-iterator diff --git a/pathname.lsp b/pathname.lsp deleted file mode 100644 index 51ecc01478e1e9738f03948beddfe0878670f51b..0000000000000000000000000000000000000000 --- a/pathname.lsp +++ /dev/null @@ -1,88 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Sat Nov 29 05:06:57 2003 -;;;; Contains: Tests of the function PATHNAME - -(in-package :cl-test) - -(deftest pathname.1 - (loop for x in *pathnames* - always (eq x (pathname x))) - t) - -(deftest pathname.2 - (equalt #p"ansi-aux.lsp" (pathname "ansi-aux.lsp")) - t) - -(deftest pathname.3 - (let ((s (open "ansi-aux.lsp" :direction :input))) - (prog1 (equalt (truename (pathname s)) (truename #p"ansi-aux.lsp")) - (close s))) - t) - -(deftest pathname.4 - (let ((s (open "ansi-aux.lsp" :direction :input))) - (close s) - (equalt (truename (pathname s)) (truename #p"ansi-aux.lsp"))) - t) - -(deftest pathname.5 - (loop for x in *logical-pathnames* - always (eq x (pathname x))) - t) - -(deftest pathname.6 - (equalt #p"ansi-aux.lsp" - (pathname (make-array 12 :initial-contents "ansi-aux.lsp" - :element-type 'base-char))) - t) - -(deftest pathname.7 - (equalt #p"ansi-aux.lsp" - (pathname (make-array 15 :initial-contents "ansi-aux.lspXXX" - :element-type 'base-char - :fill-pointer 12))) - t) - -(deftest pathname.8 - (equalt #p"ansi-aux.lsp" - (pathname (make-array 12 :initial-contents "ansi-aux.lsp" - :element-type 'base-char - :adjustable t))) - t) - -(deftest pathname.9 - (equalt #p"ansi-aux.lsp" - (pathname (make-array 15 :initial-contents "ansi-aux.lspXXX" - :element-type 'character - :fill-pointer 12))) - t) - -(deftest pathname.10 - (equalt #p"ansi-aux.lsp" - (pathname (make-array 12 :initial-contents "ansi-aux.lsp" - :element-type 'character - :adjustable t))) - t) - -(deftest pathname.11 - (loop for etype in '(standard-char base-char character) - collect - (equalt #p"ansi-aux.lsp" - (pathname - (let* ((s (make-array 15 :initial-contents "XXansi-aux.lspX" - :element-type etype))) - (make-array 12 :element-type etype - :displaced-to s - :displaced-index-offset 2))))) - (t t t)) - -;;; Error tests - -(deftest pathname.error.1 - (signals-error (pathname) program-error) - t) - -(deftest pathname.error.2 - (signals-error (pathname (first *pathnames*) nil) program-error) - t) diff --git a/pathnames/directory-namestring.lsp b/pathnames/directory-namestring.lsp new file mode 100644 index 0000000000000000000000000000000000000000..cb61d56712a243d09e070b3aaf5b3d8cbcd51880 --- /dev/null +++ b/pathnames/directory-namestring.lsp @@ -0,0 +1,52 @@ + ;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Sun Sep 12 06:21:42 2004 +;;;; Contains: Tests for DIRECTORY-NAMESTRING + + + +(deftest directory-namestring.1 + (let* ((vals (multiple-value-list + (directory-namestring "sample-files/directory-namestring.txt"))) + (s (first vals))) + (if (and (null (cdr vals)) + (stringp s) + (equal (directory-namestring s) s)) + :good + vals)) + :good) + +(deftest directory-namestring.2 + (do-special-strings + (s "sample-files/directory-namestring.txt" nil) + (let ((ns (directory-namestring s))) + (assert (stringp ns)) + (assert (string= (directory-namestring ns) ns)))) + nil) + +;;; Lispworks makes another assumption about filename normalization +;;; when using file streams as pathname designators, so this test +;;; doesn't work there. +;;; (This is another example of the difficulty of testing a feature +;;; in which so much is left up to the implementation.) +#-lispworks +(deftest directory-namestring.3 + (let* ((name "sample-files/directory-namestring.txt") + (pn (merge-pathnames (pathname name))) + (name2 (with-open-file (s pn :direction :input) + (directory-namestring s))) + (name3 (directory-namestring pn))) + (or (equalt name2 name3) (list name2 name3))) + t) + +;;; Error tests + +(deftest directory-namestring.error.1 + (signals-error (directory-namestring) program-error) + t) + +(deftest directory-namestring.error.2 + (signals-error + (directory-namestring "sample-files/directory-namestring.txt" nil) + program-error) + t) diff --git a/pathnames/enough-namestring.lsp b/pathnames/enough-namestring.lsp new file mode 100644 index 0000000000000000000000000000000000000000..3706cdf7fc0011e7ab5617b677c31f2c4db7abda --- /dev/null +++ b/pathnames/enough-namestring.lsp @@ -0,0 +1,89 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Sun Sep 12 06:23:50 2004 +;;;; Contains: Tests of ENOUGH-NAMESTRING + + + +(deftest enough-namestring.1 + (let* ((vals (multiple-value-list + (enough-namestring "sample-files/enough-namestring.txt"))) + (s (first vals))) + (if (and (null (cdr vals)) + (stringp s) + (equal (enough-namestring s) s)) + :good + vals)) + :good) + +(deftest enough-namestring.2 + (do-special-strings + (s "sample-files/enough-namestring.txt" nil) + (let ((ns (enough-namestring s))) + (assert (stringp ns)) + (assert (string= (enough-namestring ns) ns)))) + nil) + +(deftest enough-namestring.3 + (let* ((name "sample-files/enough-namestring.txt") + (pn (merge-pathnames (pathname name))) + (name2 (enough-namestring pn)) + (name3 (enough-namestring name))) + (or (equalt name2 name3) (list name2 name3))) + t) + +(deftest enough-namestring.4 + (let* ((name "sample-files/enough-namestring.txt") + (pn (merge-pathnames (pathname name))) + (name2 (with-open-file (s pn :direction :input) (enough-namestring s))) + (name3 (enough-namestring name))) + (or (equalt name2 name3) (list name2 name3))) + t) + +(deftest enough-namestring.5 + (let* ((vals (multiple-value-list + (enough-namestring "sample-files/enough-namestring.txt" + *default-pathname-defaults*))) + (s (first vals))) + (if (and (null (cdr vals)) + (stringp s) + (equal (enough-namestring s) s)) + :good + vals)) + :good) + +(deftest enough-namestring.6 + (let* ((vals (multiple-value-list + (enough-namestring "sample-files/enough-namestring.txt" + (namestring *default-pathname-defaults*)))) + (s (first vals))) + (if (and (null (cdr vals)) + (stringp s) + (equal (enough-namestring s) s)) + :good + vals)) + :good) + +(deftest enough-namestring.7 + (do-special-strings + (s (namestring *default-pathname-defaults*) nil) + (let* ((vals (multiple-value-list + (enough-namestring "sample-files/enough-namestring.txt" s))) + (s2 (first vals))) + (assert (null (cdr vals))) + (assert (stringp s2)) + (assert (equal (enough-namestring s2) s2)))) + nil) + +;;; Error tests + +(deftest enough-namestring.error.1 + (signals-error (enough-namestring) program-error) + t) + +(deftest enough-namestring.error.2 + (signals-error + (enough-namestring "sample-files/enough-namestring.txt" + *default-pathname-defaults* nil) + program-error) + t) diff --git a/pathnames/file-namestring.lsp b/pathnames/file-namestring.lsp new file mode 100644 index 0000000000000000000000000000000000000000..9d543ac072ef4d2cda5932fb4a630865749dd2ef --- /dev/null +++ b/pathnames/file-namestring.lsp @@ -0,0 +1,43 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Sat Sep 11 07:40:47 2004 +;;;; Contains: Tests for FILE-NAMESTRING + +(deftest file-namestring.1 + (let* ((vals (multiple-value-list + (file-namestring "sample-files/file-namestring.txt"))) + (s (first vals))) + (if (and (null (cdr vals)) + (stringp s) + (equal (file-namestring s) s)) + :good + vals)) + :good) + +(deftest file-namestring.2 + (do-special-strings + (s "sample-files/file-namestring.txt" nil) + (let ((ns (file-namestring s))) + (assert (stringp ns)) + (assert (string= (file-namestring ns) ns)))) + nil) + +(deftest file-namestring.3 + (let* ((name "sample-files/file-namestring.txt") + (pn (merge-pathnames (pathname name))) + (name2 (with-open-file (s pn :direction :input) + (file-namestring s))) + (name3 (file-namestring pn))) + (or (equalt name2 name3) (list name2 name3))) + t) + +;;; Error tests + +(deftest file-namestring.error.1 + (signals-error (file-namestring) program-error) + t) + +(deftest file-namestring.error.2 + (signals-error (file-namestring "sample-files/file-namestring.txt" nil) + program-error) + t) diff --git a/pathnames/host-namestring.lsp b/pathnames/host-namestring.lsp new file mode 100644 index 0000000000000000000000000000000000000000..8b11e40ebaac47747603258bf482577ea6870302 --- /dev/null +++ b/pathnames/host-namestring.lsp @@ -0,0 +1,49 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Sun Sep 12 06:22:40 2004 +;;;; Contains: Tests of HOST-NAMESTRING + + + +(deftest host-namestring.1 + (let* ((vals (multiple-value-list + (host-namestring "sample-files/host-namestring.txt"))) + (s (first vals))) + (if (and (null (cdr vals)) + (or (null s) + (stringp s) + ;; (equal (host-namestring s) s) + )) + :good + vals)) + :good) + +(deftest host-namestring.2 + (do-special-strings + (s "sample-files/host-namestring.txt" nil) + (let ((ns (host-namestring s))) + (when ns + (assert (stringp ns)) + ;; (assert (string= (host-namestring ns) ns)) + ))) + nil) + +(deftest host-namestring.3 + (let* ((name "sample-files/host-namestring.txt") + (pn (merge-pathnames (pathname name))) + (name2 (with-open-file (s pn :direction :input) + (host-namestring s))) + (name3 (host-namestring pn))) + (or (equalt name2 name3) (list name2 name3))) + t) + +;;; Error tests + +(deftest host-namestring.error.1 + (signals-error (host-namestring) program-error) + t) + +(deftest host-namestring.error.2 + (signals-error (host-namestring "sample-files/host-namestring.txt" nil) + program-error) + t) diff --git a/load-logical-pathname-translations.lsp b/pathnames/load-logical-pathname-translations.lsp similarity index 97% rename from load-logical-pathname-translations.lsp rename to pathnames/load-logical-pathname-translations.lsp index 8c45dfde7c3b2f80c2942a472678b7709155989c..29f26518d406faebd37ddbed52b0afb7570431ea 100644 --- a/load-logical-pathname-translations.lsp +++ b/pathnames/load-logical-pathname-translations.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Dec 31 09:31:33 2003 ;;;; Contains: Tests (such as they are) for LOAD-LOGICAL-PATHNAME-TRANSLATIONS -(in-package :cl-test) + ;;; The function LOAD-LOGICAL-PATHNAME-TRANSLATIONS is almost entirely ;;; untestable, since the basic behavior is implementation defined. diff --git a/pathnames/load.lsp b/pathnames/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..0bd8aa8c1bfe62ba97a8c545b7c71755206ef2c5 --- /dev/null +++ b/pathnames/load.lsp @@ -0,0 +1,35 @@ +;;;; Tests for pathnames and logical pathnames +(compile-and-load "ANSI-TESTS:AUX;pathnames-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "pathnames.lsp") + (load "pathname.lsp") + (load "pathnamep.lsp") + (load "make-pathname.lsp") + (load "pathname-host.lsp") + (load "pathname-device.lsp") + (load "pathname-directory.lsp") + (load "pathname-name.lsp") + (load "pathname-type.lsp") + (load "pathname-version.lsp") + + (load "load-logical-pathname-translations.lsp") + (load "logical-pathname.lsp") + (load "logical-pathname-translations.lsp") + (load "translate-logical-pathname.lsp") + + (load "namestring.lsp") + (load "file-namestring.lsp") + (load "directory-namestring.lsp") + (load "host-namestring.lsp") + (load "enough-namestring.lsp") + + (load "wild-pathname-p.lsp") + (load "merge-pathnames.lsp") + (load "pathname-match-p.lsp") + + (load "parse-namestring.lsp")) diff --git a/logical-pathname-translations.lsp b/pathnames/logical-pathname-translations.lsp similarity index 86% rename from logical-pathname-translations.lsp rename to pathnames/logical-pathname-translations.lsp index b03718e62f19322bbce63bcb40e40c2ddb53ec09..1da2bdcd849976efa9ebde8fc075be2a6b5ea3c5 100644 --- a/logical-pathname-translations.lsp +++ b/pathnames/logical-pathname-translations.lsp @@ -3,6 +3,6 @@ ;;;; Created: Wed Dec 31 09:46:08 2003 ;;;; Contains: Tests of LOGICAL-PATHNAME-TRANSLATIONS -(in-package :cl-test) + diff --git a/logical-pathname.lsp b/pathnames/logical-pathname.lsp similarity index 96% rename from logical-pathname.lsp rename to pathnames/logical-pathname.lsp index 4eed837d63a086be8ef8f8b766bc3f2478a26a7a..1fb08c72b4432b69c596b8a37e81344400e380fb 100644 --- a/logical-pathname.lsp +++ b/pathnames/logical-pathname.lsp @@ -3,8 +3,6 @@ ;;;; Created: Tue Dec 30 19:05:01 2003 ;;;; Contains: Tests of LOGICAL-PATHNAME -(in-package :cl-test) - (deftest logical-pathname.1 (loop for x in *logical-pathnames* always (eql x (logical-pathname x))) @@ -40,7 +38,7 @@ (deftest logical-pathname.error.3 (signals-error - (with-open-file (s #p"logical-pathname.lsp" :direction :input) + (with-open-file (s #p"sample-files/logical-pathname.txt" :direction :input) (logical-pathname s)) type-error) t) diff --git a/make-pathname.lsp b/pathnames/make-pathname.lsp similarity index 99% rename from make-pathname.lsp rename to pathnames/make-pathname.lsp index 1e6c70571ea19fe23eacc4d26f46278783bfff80..82f362bb5a6aae755e132c4af0abf93028ba0abb 100644 --- a/make-pathname.lsp +++ b/pathnames/make-pathname.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Nov 29 05:54:30 2003 ;;;; Contains: Tests of MAKE-PATHNAME -(in-package :cl-test) + (defvar *null-pathname* (make-pathname)) diff --git a/merge-pathnames.lsp b/pathnames/merge-pathnames.lsp similarity index 99% rename from merge-pathnames.lsp rename to pathnames/merge-pathnames.lsp index 0a5c94df64b044b452dbce525db9110e73dbaa05..35d9eb2e456106b3c26296370c42f6be4f7f1a2f 100644 --- a/merge-pathnames.lsp +++ b/pathnames/merge-pathnames.lsp @@ -3,7 +3,7 @@ ;;;; Created: Wed Dec 31 11:25:55 2003 ;;;; Contains: Tests of MERGE-PATHNAMES -(in-package :cl-test) + #| (defun merge-pathnames-test (&rest args) diff --git a/namestring.lsp b/pathnames/namestring.lsp similarity index 99% rename from namestring.lsp rename to pathnames/namestring.lsp index dee99ab6ff1534e5e4d10d50accfe384d99caf26..ef1bffe714160e19edaa18df7713fb21d41fc97a 100644 --- a/namestring.lsp +++ b/pathnames/namestring.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Sep 2 07:24:42 2004 ;;;; Contains: Tests for NAMESTRING -(in-package :cl-test) + (deftest namestring.1 (let* ((vals (multiple-value-list (namestring "namestring.lsp"))) diff --git a/parse-namestring.lsp b/pathnames/parse-namestring.lsp similarity index 99% rename from parse-namestring.lsp rename to pathnames/parse-namestring.lsp index efbf6fc438d47dffb7dedc5547df8df421fb0c09..496527d3c15b0417faac3d1e786afc70009db183 100644 --- a/parse-namestring.lsp +++ b/pathnames/parse-namestring.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Aug 14 13:59:18 2004 ;;;; Contains: Tests of PARSE-NAMESTRING -(in-package :cl-test) + ;;; "Parsing a null string always succeeds, producing a pathname ;;; with all components (except the host) equal to nil." diff --git a/pathname-device.lsp b/pathnames/pathname-device.lsp similarity index 97% rename from pathname-device.lsp rename to pathnames/pathname-device.lsp index cd87f9c49b1d7f1a1490d1a8ea18258a25b7ea5c..0082ba888ca81f558bcdb8dc0774da8ba787516e 100644 --- a/pathname-device.lsp +++ b/pathnames/pathname-device.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Dec 6 14:23:54 2003 ;;;; Contains: Tests for PATHNAME-DEVICE -(in-package :cl-test) -(compile-and-load "pathnames-aux.lsp") + + (deftest pathname-device.1 (loop for p in *pathnames* diff --git a/pathname-directory.lsp b/pathnames/pathname-directory.lsp similarity index 98% rename from pathname-directory.lsp rename to pathnames/pathname-directory.lsp index 0871e89244088b85c5bd77069da66a9f6bb17d28..6e5a772ef09e9c5a5902d71315780c3154213121 100644 --- a/pathname-directory.lsp +++ b/pathnames/pathname-directory.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Dec 6 14:24:39 2003 ;;;; Contains: Tests for PATHNAME-DIRECTORY -(in-package :cl-test) -(compile-and-load "pathnames-aux.lsp") + + (deftest pathname-directory.1 (loop for p in *pathnames* diff --git a/pathname-host.lsp b/pathnames/pathname-host.lsp similarity index 97% rename from pathname-host.lsp rename to pathnames/pathname-host.lsp index 2ed903069757284b6d16eb703490ef81e8adcbce..c47df27035d7a7d6fef3e6c66dca67f190305857 100644 --- a/pathname-host.lsp +++ b/pathnames/pathname-host.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Dec 6 14:23:22 2003 ;;;; Contains: Tests for PATHNAME-HOST -(in-package :cl-test) -(compile-and-load "pathnames-aux.lsp") + + (deftest pathname-host.1 (loop for p in *pathnames* diff --git a/pathname-match-p.lsp b/pathnames/pathname-match-p.lsp similarity index 97% rename from pathname-match-p.lsp rename to pathnames/pathname-match-p.lsp index 8e0ff8eb00cc316edec3dab02bca6caca7fbb98a..da491448285c4ed08d0b9a847631d036376a3250 100644 --- a/pathname-match-p.lsp +++ b/pathnames/pathname-match-p.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 15 07:46:22 2004 ;;;; Contains: Tests for PATHNAME-MATCH-P -(in-package :cl-test) -(compile-and-load "pathnames-aux.lsp") + + ;;; Much of the behavior cannot be tested portably. diff --git a/pathname-name.lsp b/pathnames/pathname-name.lsp similarity index 97% rename from pathname-name.lsp rename to pathnames/pathname-name.lsp index 027ffbae51c202812da13f6d58cf0198329e2d08..db53400343cb216aeb7b74f4d516ffe9cc7416f8 100644 --- a/pathname-name.lsp +++ b/pathnames/pathname-name.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Dec 6 14:45:16 2003 ;;;; Contains: Tests for PATHNAME-NAME -(in-package :cl-test) -(compile-and-load "pathnames-aux.lsp") + + (deftest pathname-name.1 (loop for p in *pathnames* diff --git a/pathname-type.lsp b/pathnames/pathname-type.lsp similarity index 97% rename from pathname-type.lsp rename to pathnames/pathname-type.lsp index e8c5083b6374f639733ffda152bebeb5039faa95..2c23bbb1774ec80903d9cf99fccf718bc31c3958 100644 --- a/pathname-type.lsp +++ b/pathnames/pathname-type.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Dec 6 14:45:16 2003 ;;;; Contains: Tests for PATHNAME-TYPE -(in-package :cl-test) -(compile-and-load "pathnames-aux.lsp") + + (deftest pathname-type.1 (loop for p in *pathnames* diff --git a/pathname-version.lsp b/pathnames/pathname-version.lsp similarity index 93% rename from pathname-version.lsp rename to pathnames/pathname-version.lsp index 5cc77db51c92239a2ddd579c8d4f5da3e276007b..25b89e435f2c3998051f937100b532b5beb5201c 100644 --- a/pathname-version.lsp +++ b/pathnames/pathname-version.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Dec 6 14:45:16 2003 ;;;; Contains: Tests for PATHNAME-VERSION -(in-package :cl-test) -(compile-and-load "pathnames-aux.lsp") + + (deftest pathname-version.1 (loop for p in *pathnames* diff --git a/pathnames/pathname.lsp b/pathnames/pathname.lsp new file mode 100644 index 0000000000000000000000000000000000000000..38bc306facda6162ef0a2888ebdd3389d65de530 --- /dev/null +++ b/pathnames/pathname.lsp @@ -0,0 +1,98 @@ + ;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Sat Nov 29 05:06:57 2003 +;;;; Contains: Tests of the function PATHNAME + + +(deftest pathname.1 + (loop for x in *pathnames* + always (eq x (pathname x))) + t) + +(deftest pathname.2 + (equalt #p"sample-files/pathname.txt" (pathname "sample-files/pathname.txt")) + t) + +(deftest pathname.3 + (let ((s (open "sample-files/pathname.txt" :direction :input))) + (prog1 (equalt (truename (pathname s)) + (truename #p"sample-files/pathname.txt")) + (close s))) + t) + +(deftest pathname.4 + (let ((s (open "sample-files/pathname.txt" :direction :input))) + (close s) + (equalt (truename (pathname s)) + (truename #p"sample-files/pathname.txt"))) + t) + +(deftest pathname.5 + (loop for x in *logical-pathnames* + always (eq x (pathname x))) + t) + +(deftest pathname.6 + (equalt #p"sample-files/pathname.txt" + (pathname + (make-array 25 + :initial-contents "sample-files/pathname.txt" + :element-type 'base-char))) + t) + +(deftest pathname.7 + (equalt #p"sample-files/pathname.txt" + (pathname (make-array 28 + :initial-contents "sample-files/pathname.txtXXX" + :element-type 'base-char + :fill-pointer 25))) + t) + +(deftest pathname.8 + (equalt #p"sample-files/pathname.txt" + (pathname (make-array 25 + :initial-contents "sample-files/pathname.txt" + :element-type 'base-char + :adjustable t))) + t) + +(deftest pathname.9 + (equalt #p"sample-files/pathname.txt" + (pathname (make-array 28 + :initial-contents "sample-files/pathname.txtXXX" + :element-type 'character + :fill-pointer 25))) + t) + +(deftest pathname.10 + (equalt #p"sample-files/pathname.txt" + (pathname (make-array 25 + :initial-contents "sample-files/pathname.txt" + :element-type 'character + :adjustable t))) + t) + +(deftest pathname.11 + (loop for etype in '(standard-char base-char character) + collect + (equalt #p"sample-files/pathname.txt" + (pathname + (let* ((s (make-array 28 + :initial-contents + "XXsample-files/pathname.txtX" + :element-type etype))) + (make-array 25 + :element-type etype + :displaced-to s + :displaced-index-offset 2))))) + (t t t)) + +;;; Error tests + +(deftest pathname.error.1 + (signals-error (pathname) program-error) + t) + +(deftest pathname.error.2 + (signals-error (pathname (first *pathnames*) nil) program-error) + t) diff --git a/pathnamep.lsp b/pathnames/pathnamep.lsp similarity index 96% rename from pathnamep.lsp rename to pathnames/pathnamep.lsp index 15d8a2fb29f26d5d68abc06b4a5d602dda1f2061..d985cad047e7247735a0f500d3711bbd6967356a 100644 --- a/pathnamep.lsp +++ b/pathnames/pathnamep.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Dec 6 10:26:45 2003 ;;;; Contains: Tests of PATHNAMEP -(in-package :cl-test) + (deftest pathnamep.1 (check-type-predicate #'pathnamep 'pathname) diff --git a/pathnames.lsp b/pathnames/pathnames.lsp similarity index 95% rename from pathnames.lsp rename to pathnames/pathnames.lsp index 98c671a8271b1c675d58692a5c42ad84544b8604..b25bb3b092bfa2065f9da20ba4729490f493e748 100644 --- a/pathnames.lsp +++ b/pathnames/pathnames.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Nov 29 04:21:53 2003 ;;;; Contains: Various tests on pathnames -(in-package :cl-test) + (deftest pathnames-print-and-read-properly (with-standard-io-syntax diff --git a/translate-logical-pathname.lsp b/pathnames/translate-logical-pathname.lsp similarity index 98% rename from translate-logical-pathname.lsp rename to pathnames/translate-logical-pathname.lsp index f8bc3998b82055982644c57795c020845124478a..8e7b2942e6024476ff9b5cab7182d34cdbf7832c 100644 --- a/translate-logical-pathname.lsp +++ b/pathnames/translate-logical-pathname.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Dec 29 14:45:50 2003 ;;;; Contains: Tests for TRANSLATE-LOGICAL-PATHNAME -(in-package :cl-test) + ;; On physical pathnames, t-l-p returns the pathname itself diff --git a/wild-pathname-p.lsp b/pathnames/wild-pathname-p.lsp similarity index 98% rename from wild-pathname-p.lsp rename to pathnames/wild-pathname-p.lsp index 3f9a302166940127b1f518951ff3f9833bfaf48e..47300a052dcec666af316116a96308d000dce2bd 100644 --- a/wild-pathname-p.lsp +++ b/pathnames/wild-pathname-p.lsp @@ -3,9 +3,9 @@ ;;;; Created: Wed Dec 31 16:54:55 2003 ;;;; Contains: Tests of WILD-PATHNAME-P -(in-package :cl-test) -(compile-and-load "pathnames-aux.lsp") + + (deftest wild-pathname-p.1 (wild-pathname-p (make-pathname)) diff --git a/print-lines.lsp b/print-lines.lsp deleted file mode 100644 index 91d9d1a0a32ccd64b6b38cbcbaa9c714bbdb6382..0000000000000000000000000000000000000000 --- a/print-lines.lsp +++ /dev/null @@ -1,42 +0,0 @@ -;-*- Mode: Lisp -*- -;;;; Author: Paul Dietz -;;;; Created: Tue Jul 27 09:32:46 2004 -;;;; Contains: Tests involving PRINT-LINES - -(in-package :cl-test) - -(compile-and-load "printer-aux.lsp") - -(deftest print-lines.1 - *print-lines* - nil) - -(deftest print-lines.2 - (with-standard-io-syntax - (let ((*print-lines* 1) - (*print-readably* nil) - (*print-miser-width* nil) - (*print-pprint-dispatch* (copy-pprint-dispatch))) - (set-pprint-dispatch '(cons (eql 1) t) 'pprint-fill) - (apply - #'values - (loop for i from 1 to 10 - collect - (let ((*print-right-margin* i)) - (subseq - (with-output-to-string - (*standard-output*) - (terpri) - (pprint '(1 2 3 4 5 6 7 8 9))) - 2)))))) - "(1 ..)" - "(1 ..)" - "(1 ..)" - "(1 ..)" - "(1 ..)" - "(1 ..)" - "(1 ..)" - "(1 2 ..)" - "(1 2 ..)" - "(1 2 3 ..)") - diff --git a/copy-pprint-dispatch.lsp b/printer/copy-pprint-dispatch.lsp similarity index 99% rename from copy-pprint-dispatch.lsp rename to printer/copy-pprint-dispatch.lsp index bde35df046791ecc1cc11dd0495832613821e591..74f10db841718a2f980bfaef29e4ad8144a1ba91 100644 --- a/copy-pprint-dispatch.lsp +++ b/printer/copy-pprint-dispatch.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Feb 23 04:41:29 2004 ;;;; Contains: Tests of COPY-PPRINT-DISPATCH -(in-package :cl-test) + (deftest copy-pprint-dispatch.1 (with-standard-io-syntax diff --git a/format-a.lsp b/printer/format/format-a.lsp similarity index 99% rename from format-a.lsp rename to printer/format/format-a.lsp index b7d1b02a648e83844ea9cb1b732474f4c43af307..42a2022064109e838fc89e6ff42ef4a0e3d679db 100644 --- a/format-a.lsp +++ b/printer/format/format-a.lsp @@ -3,8 +3,8 @@ ;;;; Created: Mon Aug 2 01:42:35 2004 ;;;; Contains: Tests of printing using the ~A directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.a.1 "~a" (nil) "NIL") diff --git a/format-ampersand.lsp b/printer/format/format-ampersand.lsp similarity index 98% rename from format-ampersand.lsp rename to printer/format/format-ampersand.lsp index 3063da9a6d5a15e7297466ad410bc532deebf49c..be520b9f05befca0ff23d005e56600afca8a9a5a 100644 --- a/format-ampersand.lsp +++ b/printer/format/format-ampersand.lsp @@ -3,8 +3,8 @@ ;;;; Created: Tue Jul 27 23:52:20 2004 ;;;; Contains: Tests of format with ~& directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.&.1 "~0&" nil "") diff --git a/format-b.lsp b/printer/format/format-b.lsp similarity index 99% rename from format-b.lsp rename to printer/format/format-b.lsp index c4a648756633003df3178132187e8b2e673ebf31..112681e131216df21dff12c4638f6f4e09ac5f4b 100644 --- a/format-b.lsp +++ b/printer/format/format-b.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 1 05:10:10 2004 ;;;; Contains: Tests of the ~B format directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (deftest format.b.1 (let ((fn (formatter "~b"))) diff --git a/format-brace.lsp b/printer/format/format-brace.lsp similarity index 99% rename from format-brace.lsp rename to printer/format/format-brace.lsp index e33043134eb81a036c43d4a7e08a1ccce9c6b44d..1a86accc53ebe4522166c352eb396479ef5066a1 100644 --- a/format-brace.lsp +++ b/printer/format/format-brace.lsp @@ -3,9 +3,9 @@ ;;;; Created: Wed Aug 25 22:08:51 2004 ;;;; Contains: Tests of the ~"{ ... ~} format directives -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.{.1 (concatenate 'string "~{~" (string #\Newline) "~}") diff --git a/format-c.lsp b/printer/format/format-c.lsp similarity index 98% rename from format-c.lsp rename to printer/format/format-c.lsp index 1a8822dc9f81324798489554c2d816c4b4471f11..4d2a8ccd794c9fe5f59840b01b33af7b2acd8b74 100644 --- a/format-c.lsp +++ b/printer/format/format-c.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Jul 27 23:07:16 2004 ;;;; Contains: Tests of formatted output, ~C directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + ;;; Test of the ~C directive diff --git a/format-circumflex.lsp b/printer/format/format-circumflex.lsp similarity index 99% rename from format-circumflex.lsp rename to printer/format/format-circumflex.lsp index 52e6fbbaf7c0c0eba27047d0bda73353b029b7a0..00bd625928055c84ac66d1d4ee154d38db071ac4 100644 --- a/format-circumflex.lsp +++ b/printer/format/format-circumflex.lsp @@ -3,8 +3,8 @@ ;;;; Created: Thu Nov 11 20:17:51 2004 ;;;; Contains: Tests of the ~^ format directive (inside other format constructs) -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + ;;; Tests of ~^ inside ~{ ... ~} diff --git a/format-conditional.lsp b/printer/format/format-conditional.lsp similarity index 98% rename from format-conditional.lsp rename to printer/format/format-conditional.lsp index 66b728e5d795b5069ff6081527465f925b2f6519..49e57b2ac539e4441c511cbf2d38a2f9234091f6 100644 --- a/format-conditional.lsp +++ b/printer/format/format-conditional.lsp @@ -3,9 +3,9 @@ ;;;; Created: Wed Aug 25 19:27:25 2004 ;;;; Contains: Tests of the ~[ ~] forms -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.cond.1 "~[~]" (0) "") diff --git a/format-d.lsp b/printer/format/format-d.lsp similarity index 99% rename from format-d.lsp rename to printer/format/format-d.lsp index cb86b7006b53d91495ee0bd894970cc313f60d47..028f6920b501afa00bcd38ab2cdc71b179d7b5e8 100644 --- a/format-d.lsp +++ b/printer/format/format-d.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Jul 31 05:19:39 2004 ;;;; Contains: Tests of the ~D format directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (deftest format.d.1 (with-standard-io-syntax diff --git a/format-f.lsp b/printer/format/format-f.lsp similarity index 99% rename from format-f.lsp rename to printer/format/format-f.lsp index d690008b16dda12393fb510e9015f5f81436c0f3..55c6fd6da9071fcea8aff95d601466794c89cc46 100644 --- a/format-f.lsp +++ b/printer/format/format-f.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 1 07:14:17 2004 ;;;; Contains: Tests of the ~f format directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + ;;; Equivalent to PRIN1 for 0 or (abs x) in range [10^-3,10^7). diff --git a/format-goto.lsp b/printer/format/format-goto.lsp similarity index 97% rename from format-goto.lsp rename to printer/format/format-goto.lsp index 308b0cd3749d06501fc174c39583851e03dd9cb9..4397f7df0c4c101ae19712b131b9cb1ec2d71683 100644 --- a/format-goto.lsp +++ b/printer/format/format-goto.lsp @@ -3,9 +3,9 @@ ;;;; Created: Tue Aug 24 06:56:13 2004 ;;;; Contains: Tests of the ~* format directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + ;;; ~* diff --git a/format-i.lsp b/printer/format/format-i.lsp similarity index 96% rename from format-i.lsp rename to printer/format/format-i.lsp index a58124eb5e6238e6828c7f2efae0c4521662d748..79b1f0e639eadb0fc10d6743f2d7652d735dcd9a 100644 --- a/format-i.lsp +++ b/printer/format/format-i.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Aug 21 07:01:36 2004 ;;;; Contains: Tests for the ~I format directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + ;;; pprint-indent.9 (def-pprint-test format.i.1 diff --git a/format-justify.lsp b/printer/format/format-justify.lsp similarity index 99% rename from format-justify.lsp rename to printer/format/format-justify.lsp index 45be9d7e6167ce061e8bd82f23fecd4e001af88f..bcfd67a4b50fa8c45bf826bf8ec00c565d16988b 100644 --- a/format-justify.lsp +++ b/printer/format/format-justify.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 22 18:09:49 2004 ;;;; Contains: Tests of the ~< ~> directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-pprint-test format.justify.1 (format nil "~<~>") diff --git a/format-logical-block.lsp b/printer/format/format-logical-block.lsp similarity index 99% rename from format-logical-block.lsp rename to printer/format/format-logical-block.lsp index 5f764f4e303d4f8fbf481aff28fb1d8d2f962c02..98155f114887214e9a6a5cafdf98eb946bf394b2 100644 --- a/format-logical-block.lsp +++ b/printer/format/format-logical-block.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 8 12:17:31 2004 ;;;; Contains: Tests of the ~< ~:> format directives -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + ;;; Error cases diff --git a/format-newline.lsp b/printer/format/format-newline.lsp similarity index 88% rename from format-newline.lsp rename to printer/format/format-newline.lsp index 1aad825dcd10bf92ef79aea50e7aeeb76857d372..4bf8c7865b59acde3df0d59f452c448101fa1743 100644 --- a/format-newline.lsp +++ b/printer/format/format-newline.lsp @@ -3,8 +3,8 @@ ;;;; Created: Sat Nov 27 08:07:16 2004 ;;;; Contains: Tests of ~<newline> -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.newline.1 (concatenate 'string "~" (string #\Newline) " X") diff --git a/format-o.lsp b/printer/format/format-o.lsp similarity index 99% rename from format-o.lsp rename to printer/format/format-o.lsp index 4ded9b77a6e5791a6263d27756b0da9e0fb1199e..813d7f905a81031c58d9bdb7b9322d44b9fede36 100644 --- a/format-o.lsp +++ b/printer/format/format-o.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 1 06:36:30 2004 ;;;; Contains: Tests of format directive ~O -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (deftest format.o.1 (let ((fn (formatter "~o"))) diff --git a/format-p.lsp b/printer/format/format-p.lsp similarity index 96% rename from format-p.lsp rename to printer/format/format-p.lsp index adfa42d7b11a68f3262b0251806b058f329f6c32..43158eea3247b3a376e3126db1452a38e98f382a 100644 --- a/format-p.lsp +++ b/printer/format/format-p.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Oct 17 21:32:45 2004 ;;;; Contains: Tests of the ~P format directives -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.p.1 "~p" (1) "") diff --git a/format-page.lsp b/printer/format/format-page.lsp similarity index 94% rename from format-page.lsp rename to printer/format/format-page.lsp index 2320f18bb2f33eb8b1be92cbf36e0525ffa55609..1b96e21e7f1fde8772357ea270383938c86d89ad 100644 --- a/format-page.lsp +++ b/printer/format/format-page.lsp @@ -3,8 +3,8 @@ ;;;; Created: Wed Jul 28 00:20:46 2004 ;;;; Contains: Tests of format with ~| directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.page.1 "~0|" nil "") diff --git a/format-paren.lsp b/printer/format/format-paren.lsp similarity index 98% rename from format-paren.lsp rename to printer/format/format-paren.lsp index c79a05753cefb8ad71c057d85aeef72c2289d1f4..57fad106a882e5198b66cbb6c4b1d3680d0c126a 100644 --- a/format-paren.lsp +++ b/printer/format/format-paren.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Oct 17 20:28:24 2004 ;;;; Contains: Tests of the ~( format directives -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.paren.1 "~(XXyy~AuuVV~)" ("ABc dEF ghI") "xxyyabc def ghiuuvv") diff --git a/format-percent.lsp b/printer/format/format-percent.lsp similarity index 96% rename from format-percent.lsp rename to printer/format/format-percent.lsp index 96813b5c9b9797065b9788c918782c51f9a7b22b..f99d62b10492fa8f481281dce7afbc3d89b19c30 100644 --- a/format-percent.lsp +++ b/printer/format/format-percent.lsp @@ -3,8 +3,8 @@ ;;;; Created: Tue Jul 27 23:47:44 2004 ;;;; Contains: Tests of format with ~% directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.%.1 "~%" nil #.(string #\Newline)) diff --git a/format-question.lsp b/printer/format/format-question.lsp similarity index 92% rename from format-question.lsp rename to printer/format/format-question.lsp index 582e0a8f3a705848760e731b986719747885569e..476843ce277eff24551cb9b912158bbf6a754774 100644 --- a/format-question.lsp +++ b/printer/format/format-question.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Oct 17 20:08:18 2004 ;;;; Contains: Tests of the ~? and ~@? format directives -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.?.1 "~?" ("" nil) "") diff --git a/format-r.lsp b/printer/format/format-r.lsp similarity index 99% rename from format-r.lsp rename to printer/format/format-r.lsp index 81b6cff6e3e1b77983e059ae845d8330799ee32d..32fcd170e927317253eeca8845890f266b56663a 100644 --- a/format-r.lsp +++ b/printer/format/format-r.lsp @@ -3,10 +3,10 @@ ;;;; Created: Wed Jul 28 00:33:02 2004 ;;;; Contains: Tests of the format directive ~R -(in-package :cl-test) + ;;; Test of various radixes -(compile-and-load "printer-aux.lsp") + (compile-and-load "roman-numerals.lsp") (deftest format.r.1 diff --git a/format-s.lsp b/printer/format/format-s.lsp similarity index 99% rename from format-s.lsp rename to printer/format/format-s.lsp index 75956475f9659f2ead23bab0bac321672f9f9f20..01f4c3839086291e1f4daa1a3fc4588b7a84dea9 100644 --- a/format-s.lsp +++ b/printer/format/format-s.lsp @@ -3,8 +3,8 @@ ;;;; Created: Tue Aug 3 11:55:07 2004 ;;;; Contains: Test of the ~S format directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (deftest format.s.1 (let ((*print-readably* nil) diff --git a/format-slash.lsp b/printer/format/format-slash.lsp similarity index 98% rename from format-slash.lsp rename to printer/format/format-slash.lsp index aa6e9739d2bf49b3bb27b176b397d6dcde06eedf..9365dbf9b5aa48ac0529ec130df742e999636ed8 100644 --- a/format-slash.lsp +++ b/printer/format/format-slash.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Aug 21 09:51:08 2004 ;;;; Contains: Tests for format directive ~/.../ -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-pprint-test format./.1 (format nil "~/pprint-linear/" 1) diff --git a/format-t.lsp b/printer/format/format-t.lsp similarity index 99% rename from format-t.lsp rename to printer/format/format-t.lsp index 0446e17c0576af9dae4afe4f32571a2f55adbb7c..d1ceb4d44a1311552b8122ff7feb5812794773ed 100644 --- a/format-t.lsp +++ b/printer/format/format-t.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sat Aug 21 12:45:22 2004 ;;;; Contains: Tests of the ~T format directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-pprint-test format.t.1 (format nil "~0,0T") diff --git a/format-tilde.lsp b/printer/format/format-tilde.lsp similarity index 97% rename from format-tilde.lsp rename to printer/format/format-tilde.lsp index 470c2ccf39b0ca9357b02c1d2abe0d8bf1c035fd..16991a8a844e5bbf77ca3f4af8f4aa2238638662 100644 --- a/format-tilde.lsp +++ b/printer/format/format-tilde.lsp @@ -3,8 +3,8 @@ ;;;; Created: Wed Jul 28 00:27:00 2004 ;;;; Contains: Tests of format directive ~~ -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-format-test format.~.1 "~~" nil "~") diff --git a/format-underscore.lsp b/printer/format/format-underscore.lsp similarity index 99% rename from format-underscore.lsp rename to printer/format/format-underscore.lsp index a6c6e8e6d4f87bb29a9e30393c59156e90eea55c..60ae6a2be3bfe82f199f6b66f1d2036a8bbd1ecc 100644 --- a/format-underscore.lsp +++ b/printer/format/format-underscore.lsp @@ -3,9 +3,9 @@ ;;;; Created: Wed Aug 4 03:36:50 2004 ;;;; Contains: Tests of the ~_ format directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (def-ppblock-test format._.1 (progn diff --git a/format-x.lsp b/printer/format/format-x.lsp similarity index 99% rename from format-x.lsp rename to printer/format/format-x.lsp index 7c73b3bdeb2c5229bba1819dd7c1d0ee359dd875..1db94b8c0c4bc134149390988c7cae6f777ae4b6 100644 --- a/format-x.lsp +++ b/printer/format/format-x.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Aug 1 06:51:34 2004 ;;;; Contains: Tests of ~X format directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (deftest format.x.1 (let ((fn (formatter "~x"))) diff --git a/formatter-c.lsp b/printer/format/formatter-c.lsp similarity index 98% rename from formatter-c.lsp rename to printer/format/formatter-c.lsp index 7de05b17307d79a9edac085417692dbb89b1ab27..91c75b2da7a0b1c963686983564f822ae244c76b 100644 --- a/formatter-c.lsp +++ b/printer/format/formatter-c.lsp @@ -3,9 +3,9 @@ ;;;; Created: Sun Dec 5 14:32:46 2004 ;;;; Contains: Tests of FORMATTER on the C directive -(in-package :cl-test) -(compile-and-load "printer-aux.lsp") + + (deftest formatter.c.1 (let ((fn (formatter "~C"))) diff --git a/printer/format/load.lsp b/printer/format/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..8d9194979d49dec76fea3e72971865e8d5b067ef --- /dev/null +++ b/printer/format/load.lsp @@ -0,0 +1,52 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Mon Aug 2 21:47:02 2004 +;;;; Contains: Load format-related tests + +;;; Format tests + +;;; 22.3.1 +(load "format/format-c.lsp") +(load "format/formatter-c.lsp") +(load "format/format-percent.lsp") +(load "format/format-ampersand.lsp") +(load "format/format-page.lsp") +(load "format/format-tilde.lsp") + +;;; 22.3.2 +(load "format/format-r.lsp") +(load "format/format-d.lsp") +(load "format/format-b.lsp") +(load "format/format-o.lsp") +(load "format/format-x.lsp") + +;;; 22.3.3 +(load "format/format-f.lsp") + +;;; 22.3.4 +(load "format/format-a.lsp") +(load "format/format-s.lsp") + +;;; 22.3.5 +(load "format/format-underscore.lsp") +(load "format/format-logical-block.lsp") +(load "format/format-i.lsp") +(load "format/format-slash.lsp") + +;;; 22.3.6 +(load "format/format-t.lsp") +(load "format/format-justify.lsp") + +;;; 22.3.7 +(load "format/format-goto.lsp") +(load "format/format-conditional.lsp") +(load "format/format-brace.lsp") +(load "format/format-question.lsp") + +;;; 22.3.8 +(load "format/format-paren.lsp") +(load "format/format-p.lsp") + +;;; 22.3.9 +(load "format/format-circumflex.lsp") +(load "format/format-newline.lsp") diff --git a/roman-numerals.lsp b/printer/format/roman-numerals.lsp similarity index 99% rename from roman-numerals.lsp rename to printer/format/roman-numerals.lsp index 28300abe3da98e32cd5569d001b6916057d4a965..5edb74a4a3dc4c9ecc01ee40994e2c21865cd852 100644 --- a/roman-numerals.lsp +++ b/printer/format/roman-numerals.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Jul 29 08:44:15 2004 ;;;; Contains: The roman numbers from 1 to 3999 -(in-package :cl-test) + (defparameter *roman-numerals* '("I" "II" "III" "IV" "V" "VI" "VII" "VIII" "IX" "X" "XI" "XII" "XIII" "XIV" "XV" "XVI" "XVII" diff --git a/printer/load.lsp b/printer/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..4a65cc395c6772824ebc94addcca078dc1749283 --- /dev/null +++ b/printer/load.lsp @@ -0,0 +1,50 @@ +;;;; Tests of the lisp printer +(compile-and-load "ANSI-TESTS:AUX;printer-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;backquote-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "copy-pprint-dispatch.lsp") + (load "print-integers.lsp") + (load "print-ratios.lsp") + (load "print-floats.lsp") + (load "print-complex.lsp") + (load "print-characters.lsp") + (load "print-lines.lsp") + (load "print-symbols.lsp") + (load "print-strings.lsp") + (load "print-cons.lsp") + (load "print-backquote.lsp") + (load "print-bit-vector.lsp") + (load "print-vector.lsp") + (load "print-array.lsp") + (load "print-random-state.lsp") + (load "print-pathname.lsp") + (load "print-structure.lsp") + (load "printer-control-vars.lsp") + (load "pprint-dispatch.lsp") + (load "pprint-fill.lsp") + (load "pprint-linear.lsp") + (load "pprint-tabular.lsp") + (load "pprint-indent.lsp") + (load "pprint-logical-block.lsp") + (load "pprint-exit-if-list-exhausted.lsp") + (load "pprint-newline.lsp") + (load "pprint-tab.lsp") + (load "print-unreadable-object.lsp") + (load "write.lsp") + (load "print.lsp") + (load "pprint.lsp") + (load "prin1.lsp") + (load "princ.lsp") + (load "write-to-string.lsp") + (load "prin1-to-string.lsp") + (load "princ-to-string.lsp") + (load "print-level.lsp") + (load "print-length.lsp") + + (load "format/load.lsp") +) diff --git a/pprint-dispatch.lsp b/printer/pprint-dispatch.lsp similarity index 100% rename from pprint-dispatch.lsp rename to printer/pprint-dispatch.lsp diff --git a/pprint-exit-if-list-exhausted.lsp b/printer/pprint-exit-if-list-exhausted.lsp similarity index 100% rename from pprint-exit-if-list-exhausted.lsp rename to printer/pprint-exit-if-list-exhausted.lsp diff --git a/pprint-fill.lsp b/printer/pprint-fill.lsp similarity index 100% rename from pprint-fill.lsp rename to printer/pprint-fill.lsp diff --git a/pprint-indent.lsp b/printer/pprint-indent.lsp similarity index 100% rename from pprint-indent.lsp rename to printer/pprint-indent.lsp diff --git a/pprint-linear.lsp b/printer/pprint-linear.lsp similarity index 100% rename from pprint-linear.lsp rename to printer/pprint-linear.lsp diff --git a/pprint-logical-block.lsp b/printer/pprint-logical-block.lsp similarity index 100% rename from pprint-logical-block.lsp rename to printer/pprint-logical-block.lsp diff --git a/pprint-newline.lsp b/printer/pprint-newline.lsp similarity index 99% rename from pprint-newline.lsp rename to printer/pprint-newline.lsp index e7295537f43ed42dac989abad801c69d7f651396..bc77f2befd39f4be62bd9f8b0d63cf081c8d5dfd 100644 --- a/pprint-newline.lsp +++ b/printer/pprint-newline.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (defmacro def-pprint-newline-test (name form expected-value &rest key-args) `(def-pprint-test ,name diff --git a/pprint-tab.lsp b/printer/pprint-tab.lsp similarity index 99% rename from pprint-tab.lsp rename to printer/pprint-tab.lsp index 085e3c7166604771181dff4ba4353406f1ade056..5eca2f15f5520e1ea5f79bb14d4a407760537e56 100644 --- a/pprint-tab.lsp +++ b/printer/pprint-tab.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;;; No effect in a non-pprint stream diff --git a/pprint-tabular.lsp b/printer/pprint-tabular.lsp similarity index 100% rename from pprint-tabular.lsp rename to printer/pprint-tabular.lsp diff --git a/pprint.lsp b/printer/pprint.lsp similarity index 95% rename from pprint.lsp rename to printer/pprint.lsp index 15edabd36b4f0d024d41fe4e2c0aa5f4d5ed9e64..25bd1d30fc6199c104fbb8f69fc914ffed9543f9 100644 --- a/pprint.lsp +++ b/printer/pprint.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;;; This function is mostly tested elsewhere diff --git a/prin1-to-string.lsp b/printer/prin1-to-string.lsp similarity index 93% rename from prin1-to-string.lsp rename to printer/prin1-to-string.lsp index 6e950f7ac8f77e0fb2ce802a87fd5bca8f73d437..aba16db4272ca5de5bd34e8142936536a0a9bb1e 100644 --- a/prin1-to-string.lsp +++ b/printer/prin1-to-string.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (deftest prin1-to-string.1 (random-prin1-to-string-test 5) diff --git a/prin1.lsp b/printer/prin1.lsp similarity index 95% rename from prin1.lsp rename to printer/prin1.lsp index 26d12c04caca8f417caac4bf6134e0c31265369b..8dd77ab15ac62d6227928bc6a94d1083ac75c7b4 100644 --- a/prin1.lsp +++ b/printer/prin1.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;;; This function is mostly tested elsewhere diff --git a/princ-to-string.lsp b/printer/princ-to-string.lsp similarity index 93% rename from princ-to-string.lsp rename to printer/princ-to-string.lsp index 3a3171737186fb4ec3261289470635e84bd9819e..5276f040aa20fdc846221b5f76848bc3ee860c71 100644 --- a/princ-to-string.lsp +++ b/printer/princ-to-string.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (deftest princ-to-string.1 (random-princ-to-string-test 1000) diff --git a/princ.lsp b/printer/princ.lsp similarity index 95% rename from princ.lsp rename to printer/princ.lsp index 84b1578f9b16f23eb63dd3694f5c41dc652155c1..fd0edb630b63801034a9b9be8116395f93e3c3c9 100644 --- a/princ.lsp +++ b/printer/princ.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;;; This function is mostly tested elsewhere diff --git a/print-array.lsp b/printer/print-array.lsp similarity index 99% rename from print-array.lsp rename to printer/print-array.lsp index ab93657b278da5ec7fd7ebf163e545325a08dc05..2f0f2f9e889e29bedb8e07a3d37cb3a893ada9d1 100644 --- a/print-array.lsp +++ b/printer/print-array.lsp @@ -3,7 +3,7 @@ ;;;; Created: Thu Apr 22 22:38:11 2004 ;;;; Contains: Tests of printing of arrays (other than vectors) -(compile-and-load "printer-aux.lsp") + (in-package :cl-test) diff --git a/print-backquote.lsp b/printer/print-backquote.lsp similarity index 97% rename from print-backquote.lsp rename to printer/print-backquote.lsp index 331ea940ea671b260512ca5a962160e2971a8493..ca282b0201f0be45690e3c1dce3274125f0bec05 100644 --- a/print-backquote.lsp +++ b/printer/print-backquote.lsp @@ -5,8 +5,8 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") -(compile-and-load "backquote-aux.lsp") + + (deftest print.backquote.random.1 (let* ((x '`(a ,b ,@c (d . ,e) ,.f #(1 2 ,p ,@q ,.r s) g)) diff --git a/print-bit-vector.lsp b/printer/print-bit-vector.lsp similarity index 98% rename from print-bit-vector.lsp rename to printer/print-bit-vector.lsp index 5e704db4802a0fca40db3cf9338a918202fd19a7..1ea931ac1b50585e8df889aaee4b7b3217afb7a7 100644 --- a/print-bit-vector.lsp +++ b/printer/print-bit-vector.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Apr 20 22:10:53 2004 ;;;; Contains: Tests for printing of bit vectors -(compile-and-load "printer-aux.lsp") + (in-package :cl-test) diff --git a/print-characters.lsp b/printer/print-characters.lsp similarity index 98% rename from print-characters.lsp rename to printer/print-characters.lsp index c220e2406674cdbed01cf024477aa6d4564c9647..5e70be54b1b1dd90f6a8229a2916ab4ab4b3d14e 100644 --- a/print-characters.lsp +++ b/printer/print-characters.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;;; See CLtS section 22.1.3.2, "Printing Characters" diff --git a/print-complex.lsp b/printer/print-complex.lsp similarity index 97% rename from print-complex.lsp rename to printer/print-complex.lsp index 956fcc4d9ca87817de36d3f798d4740edc3e0c60..bfab48dadf0a23064fb57be2d04899b65ea839fe 100644 --- a/print-complex.lsp +++ b/printer/print-complex.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (deftest print.complex.1 (equalt diff --git a/print-cons.lsp b/printer/print-cons.lsp similarity index 99% rename from print-cons.lsp rename to printer/print-cons.lsp index 7d9b77a8523eeb541f2a4cf28e2bcd6d30ad13ae..8327ee10b975694efdccf589f47106f9882aecc1 100644 --- a/print-cons.lsp +++ b/printer/print-cons.lsp @@ -3,7 +3,7 @@ ;;;; Created: Mon Apr 19 07:28:40 2004 ;;;; Contains: Tests of printing of conses -(compile-and-load "printer-aux.lsp") + (in-package :cl-test) diff --git a/print-floats.lsp b/printer/print-floats.lsp similarity index 99% rename from print-floats.lsp rename to printer/print-floats.lsp index 81869ba115171bffe717bb21736dd8778445bd4b..dfabc8308f844421d41fed1030efe53ea964247b 100644 --- a/print-floats.lsp +++ b/printer/print-floats.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (deftest print.short-float.1 (with-standard-io-syntax diff --git a/print-integers.lsp b/printer/print-integers.lsp similarity index 99% rename from print-integers.lsp rename to printer/print-integers.lsp index aa62498e90c14508884a9c56abd963b9fba05146..b6eaf89837825b3165fbcab43679269d4303dec4 100644 --- a/print-integers.lsp +++ b/printer/print-integers.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;;; Tests with *print-base* diff --git a/print-length.lsp b/printer/print-length.lsp similarity index 99% rename from print-length.lsp rename to printer/print-length.lsp index b513d40dcd51d6dff5b3f3b6a4e2c0c70f7b8e1f..4b65e397c623a547a5ae97d3fd122164cd40c12b 100644 --- a/print-length.lsp +++ b/printer/print-length.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (def-print-test print-length.1 '(1) diff --git a/print-level.lsp b/printer/print-level.lsp similarity index 99% rename from print-level.lsp rename to printer/print-level.lsp index 841af68e18a5ce92ad212b2db41f1f1c86786445..4e7721f182dd7fd7520106130a365bafdf14e699 100644 --- a/print-level.lsp +++ b/printer/print-level.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + #| (deftest print-level.1 diff --git a/printer/print-lines.lsp b/printer/print-lines.lsp new file mode 100644 index 0000000000000000000000000000000000000000..8e7da38d87ed8e0cf05df7a42d493e70d1654e49 --- /dev/null +++ b/printer/print-lines.lsp @@ -0,0 +1,44 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Tue Jul 27 09:32:46 2004 +;;;; Contains: Tests involving PRINT-LINES + +(deftest print-lines.1 + *print-lines* + nil) + +;; original test had different expected values, but print margin is in +;; ems and I think there is no definite anwer what this should print. +#+(or) +(deftest print-lines.2 + (with-standard-io-syntax + (let ((*print-lines* 1) + (*print-readably* nil) + (*print-miser-width* nil) + (*print-pprint-dispatch* (copy-pprint-dispatch))) + (set-pprint-dispatch '(cons (eql 1) t) 'pprint-fill) + (apply + #'values + (loop + for i from 1 to 10 + for s in '("(1 ..)" + "(1 ..)" + "(1 ..)" + "(1 ..)" + "(1 2 ..)" + "(1 2 ..)" + "(1 2 3 ..)" + "(1 2 3 ..)" + "(1 2 3 4 ..)" + "(1 2 3 4 ..)") + collect + (let ((result + (let ((*print-right-margin* i)) + (subseq + (with-output-to-string (*standard-output*) + (terpri) + (pprint '(1 2 3 4 5 6 7 8 9))) + 2)))) + (or (equal s result) + (list s result))))))) + T T T T T T T T T T) diff --git a/print-pathname.lsp b/printer/print-pathname.lsp similarity index 96% rename from print-pathname.lsp rename to printer/print-pathname.lsp index 6baa9825da77907652262d12e29181be4271456f..ee3f46a4d8e08568d5dc089a3bdf4e1fe94acf8c 100644 --- a/print-pathname.lsp +++ b/printer/print-pathname.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (deftest print.pathname.1 (loop for p in *universe* diff --git a/print-random-state.lsp b/printer/print-random-state.lsp similarity index 94% rename from print-random-state.lsp rename to printer/print-random-state.lsp index 5ba76963b39332ac3d5d0810322be24b5eee9fa8..2ad5533d2a2f1d6229f9303175ea09fcf27796c9 100644 --- a/print-random-state.lsp +++ b/printer/print-random-state.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (deftest print.random-state.1 (loop repeat 100 diff --git a/print-ratios.lsp b/printer/print-ratios.lsp similarity index 92% rename from print-ratios.lsp rename to printer/print-ratios.lsp index 4d42c6c2886d6b9df044e2939cb10741b509122c..b420f4f61be59e512a221e6d665dc771b849f97c 100644 --- a/print-ratios.lsp +++ b/printer/print-ratios.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (deftest print.ratios.random (loop for i from 1 to 1000 diff --git a/print-strings.lsp b/printer/print-strings.lsp similarity index 99% rename from print-strings.lsp rename to printer/print-strings.lsp index 0c8ba3eb4b26756f62aa80edf02d703e86fe489c..f299e5df8bf7ca6b73c95c026fa95aa4ba1310c2 100644 --- a/print-strings.lsp +++ b/printer/print-strings.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (deftest print.string.1 (with-standard-io-syntax diff --git a/print-structure.lsp b/printer/print-structure.lsp similarity index 97% rename from print-structure.lsp rename to printer/print-structure.lsp index d3b159278a69da196494569c276c86decf21c298..82cdd2b74ff7bad1784a4772c442fba56fb807ea 100644 --- a/print-structure.lsp +++ b/printer/print-structure.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (defstruct print-struct-1 foo bar) diff --git a/print-symbols.lsp b/printer/print-symbols.lsp similarity index 99% rename from print-symbols.lsp rename to printer/print-symbols.lsp index 401e7a6bac710ef0e58d2a61fd129562007e2185..b7351cd6dd3cf1083d1bae25def2ed28424330a5 100644 --- a/print-symbols.lsp +++ b/printer/print-symbols.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;;; Symbol printing when escaping is off diff --git a/print-unreadable-object.lsp b/printer/print-unreadable-object.lsp similarity index 99% rename from print-unreadable-object.lsp rename to printer/print-unreadable-object.lsp index ab74b4e745997131288c69019c9eaa22038b1340..6b83c6a8dac13b05c40ffcea978e25dc1deee0a9 100644 --- a/print-unreadable-object.lsp +++ b/printer/print-unreadable-object.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + (def-pprint-test print-unreadable-object.1 (loop diff --git a/print-vector.lsp b/printer/print-vector.lsp similarity index 99% rename from print-vector.lsp rename to printer/print-vector.lsp index 4798fec9e8f87a130c7b5c4500ab137f80d1e696..4ff50ac98b06031f7594d900e64857758bbb16d8 100644 --- a/print-vector.lsp +++ b/printer/print-vector.lsp @@ -3,7 +3,7 @@ ;;;; Created: Tue Apr 20 22:36:53 2004 ;;;; Contains: Tests of vector printing -(compile-and-load "printer-aux.lsp") + (in-package :cl-test) diff --git a/print.lsp b/printer/print.lsp similarity index 95% rename from print.lsp rename to printer/print.lsp index 5f71bcdec0ad2051158bee6f7edf6f1cb3a3bf8a..dac56e76e5a1ab0128dfb6399a0cf3dbe8eb98d1 100644 --- a/print.lsp +++ b/printer/print.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;;; This function is mostly tested elsewhere diff --git a/printer-control-vars.lsp b/printer/printer-control-vars.lsp similarity index 100% rename from printer-control-vars.lsp rename to printer/printer-control-vars.lsp diff --git a/write-to-string.lsp b/printer/write-to-string.lsp similarity index 96% rename from write-to-string.lsp rename to printer/write-to-string.lsp index c324c44b04ac4d50d922bd1c3c4170d1ce995cd6..2832cb35ae1e6e4a5044f806ccda4893e0b9e674 100644 --- a/write-to-string.lsp +++ b/printer/write-to-string.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;;; This function is extensively used elsewhere diff --git a/write.lsp b/printer/write.lsp similarity index 98% rename from write.lsp rename to printer/write.lsp index de516651c0a88c7cb373f4f15810eda26d4a99aa..23cb1052863a81accdb17b64ca3c6a350f56b58a 100644 --- a/write.lsp +++ b/printer/write.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "printer-aux.lsp") + ;; (compile-and-load "write-aux.lsp") ;;; This function is also incidentally tested elsewhere. diff --git a/probe-file.txt b/probe-file.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6459e005434a49a66a3ddec92279a86160ad71f --- /dev/null +++ b/probe-file.txt @@ -0,0 +1 @@ +xxx diff --git a/make-random-element-of.lsp b/random/make-random-element-of.lsp similarity index 100% rename from make-random-element-of.lsp rename to random/make-random-element-of.lsp diff --git a/random-class.lsp b/random/random-class.lsp similarity index 100% rename from random-class.lsp rename to random/random-class.lsp diff --git a/random-int-form.lsp b/random/random-int-form.lsp similarity index 100% rename from random-int-form.lsp rename to random/random-int-form.lsp diff --git a/random-intern.lsp b/random/random-intern.lsp similarity index 100% rename from random-intern.lsp rename to random/random-intern.lsp diff --git a/random-type-prop-tests-01.lsp b/random/random-type-prop-tests-01.lsp similarity index 100% rename from random-type-prop-tests-01.lsp rename to random/random-type-prop-tests-01.lsp diff --git a/random-type-prop-tests-02.lsp b/random/random-type-prop-tests-02.lsp similarity index 100% rename from random-type-prop-tests-02.lsp rename to random/random-type-prop-tests-02.lsp diff --git a/random-type-prop-tests-03.lsp b/random/random-type-prop-tests-03.lsp similarity index 100% rename from random-type-prop-tests-03.lsp rename to random/random-type-prop-tests-03.lsp diff --git a/random-type-prop-tests-04.lsp b/random/random-type-prop-tests-04.lsp similarity index 100% rename from random-type-prop-tests-04.lsp rename to random/random-type-prop-tests-04.lsp diff --git a/random-type-prop-tests-05.lsp b/random/random-type-prop-tests-05.lsp similarity index 100% rename from random-type-prop-tests-05.lsp rename to random/random-type-prop-tests-05.lsp diff --git a/random-type-prop-tests-06.lsp b/random/random-type-prop-tests-06.lsp similarity index 100% rename from random-type-prop-tests-06.lsp rename to random/random-type-prop-tests-06.lsp diff --git a/random-type-prop-tests-07.lsp b/random/random-type-prop-tests-07.lsp similarity index 100% rename from random-type-prop-tests-07.lsp rename to random/random-type-prop-tests-07.lsp diff --git a/random-type-prop-tests-08.lsp b/random/random-type-prop-tests-08.lsp similarity index 100% rename from random-type-prop-tests-08.lsp rename to random/random-type-prop-tests-08.lsp diff --git a/random-type-prop-tests-09.lsp b/random/random-type-prop-tests-09.lsp similarity index 100% rename from random-type-prop-tests-09.lsp rename to random/random-type-prop-tests-09.lsp diff --git a/random-type-prop-tests-10.lsp b/random/random-type-prop-tests-10.lsp similarity index 100% rename from random-type-prop-tests-10.lsp rename to random/random-type-prop-tests-10.lsp diff --git a/random-type-prop-tests-structs.lsp b/random/random-type-prop-tests-structs.lsp similarity index 100% rename from random-type-prop-tests-structs.lsp rename to random/random-type-prop-tests-structs.lsp diff --git a/random-type-prop-tests.lsp b/random/random-type-prop-tests.lsp similarity index 100% rename from random-type-prop-tests.lsp rename to random/random-type-prop-tests.lsp diff --git a/random-type-prop.lsp b/random/random-type-prop.lsp similarity index 100% rename from random-type-prop.lsp rename to random/random-type-prop.lsp diff --git a/random-types.lsp b/random/random-types.lsp similarity index 100% rename from random-types.lsp rename to random/random-types.lsp diff --git a/rctest/load.lsp b/rctest/load.lsp index 69841eb35b6ae6ecf3c9a7c39251e91bb4bebdfe..16867853a1db66539c0fa6d72ba246ca88d58127 100644 --- a/rctest/load.lsp +++ b/rctest/load.lsp @@ -4,7 +4,7 @@ (load "../rt-package.lsp") (compile-and-load "../rt.lsp") (load "../cl-test-package.lsp") -(compile-and-load "../random-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;random-aux.lsp") (load "rctest-package.lsp") (compile-and-load "rctest-util.lsp") (compile-and-load "generator.lsp") diff --git a/copy-readtable.lsp b/reader/copy-readtable.lsp similarity index 100% rename from copy-readtable.lsp rename to reader/copy-readtable.lsp diff --git a/dispatch-macro-characters.lsp b/reader/dispatch-macro-characters.lsp similarity index 100% rename from dispatch-macro-characters.lsp rename to reader/dispatch-macro-characters.lsp diff --git a/get-macro-character.lsp b/reader/get-macro-character.lsp similarity index 99% rename from get-macro-character.lsp rename to reader/get-macro-character.lsp index c6d04bf8e859e16c05e035bcb31f83be63734a19..4f7d7c8f0a9ba7b4e8499416173c1b8e788b1e7b 100644 --- a/get-macro-character.lsp +++ b/reader/get-macro-character.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "reader-aux.lsp") + (def-syntax-test get-macro-character.1 (loop for c across "()';\"`,#" diff --git a/reader/load.lsp b/reader/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..de2bf595b67c3d0f46f76cdee8cb1f75d2e6e2b6 --- /dev/null +++ b/reader/load.lsp @@ -0,0 +1,25 @@ +;;;; Tests of the reader +(compile-and-load "ANSI-TESTS:AUX;reader-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "reader-test.lsp") + (load "with-standard-io-syntax.lsp") + (load "copy-readtable.lsp") + (load "read.lsp") + (load "read-preserving-whitespace.lsp") + (load "read-delimited-list.lsp") + (load "read-from-string.lsp") + (load "readtable-case.lsp") + (load "readtablep.lsp") + (load "get-macro-character.lsp") + (load "set-macro-character.lsp") + (load "read-suppress.lsp") + (load "set-syntax-from-char.lsp") + (load "dispatch-macro-characters.lsp") + + (load "syntax.lsp") + (load "syntax-tokens.lsp")) diff --git a/read-delimited-list.lsp b/reader/read-delimited-list.lsp similarity index 100% rename from read-delimited-list.lsp rename to reader/read-delimited-list.lsp diff --git a/read-from-string.lsp b/reader/read-from-string.lsp similarity index 100% rename from read-from-string.lsp rename to reader/read-from-string.lsp diff --git a/read-preserving-whitespace.lsp b/reader/read-preserving-whitespace.lsp similarity index 100% rename from read-preserving-whitespace.lsp rename to reader/read-preserving-whitespace.lsp diff --git a/read-suppress.lsp b/reader/read-suppress.lsp similarity index 99% rename from read-suppress.lsp rename to reader/read-suppress.lsp index db1ea6ab44752b935b099831f7ef1c45a6767d7f..e00a78cf44757329e342ef964426dbdc7d84d7be 100644 --- a/read-suppress.lsp +++ b/reader/read-suppress.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "reader-aux.lsp") + (defmacro def-read-suppress-test (name string) `(def-syntax-test ,name diff --git a/read.lsp b/reader/read.lsp similarity index 100% rename from read.lsp rename to reader/read.lsp diff --git a/reader-test.lsp b/reader/reader-test.lsp similarity index 99% rename from reader-test.lsp rename to reader/reader-test.lsp index b3d63582f4dbedee41b7e7a37d0c2f2160a12a1c..9537ba96de1d759616706fbc3e0edc181c0a9c9d 100644 --- a/reader-test.lsp +++ b/reader/reader-test.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "reader-aux.lsp") + (def-syntax-test read-symbol.1 (read-from-string "a") diff --git a/readtable-case.lsp b/reader/readtable-case.lsp similarity index 100% rename from readtable-case.lsp rename to reader/readtable-case.lsp diff --git a/readtablep.lsp b/reader/readtablep.lsp similarity index 100% rename from readtablep.lsp rename to reader/readtablep.lsp diff --git a/set-macro-character.lsp b/reader/set-macro-character.lsp similarity index 100% rename from set-macro-character.lsp rename to reader/set-macro-character.lsp diff --git a/set-syntax-from-char.lsp b/reader/set-syntax-from-char.lsp similarity index 99% rename from set-syntax-from-char.lsp rename to reader/set-syntax-from-char.lsp index 90f3ecec7785a6f1b1cf80d19919a9755a17fb62..d1d038158eda9673acad82b4656346efbe890977 100644 --- a/set-syntax-from-char.lsp +++ b/reader/set-syntax-from-char.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "reader-aux.lsp") + (defmacro def-set-syntax-from-char-test (name form &body expected-values) `(deftest ,name diff --git a/syntax-tokens.lsp b/reader/syntax-tokens.lsp similarity index 99% rename from syntax-tokens.lsp rename to reader/syntax-tokens.lsp index debfd0e487e9ee78af63f7b1ad88ae42af6816c2..c41c6c6bbf3a8b55260714498ec40dac5c7dfc5c 100644 --- a/syntax-tokens.lsp +++ b/reader/syntax-tokens.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "reader-aux.lsp") + ;; Erroneous numbers diff --git a/syntax.lsp b/reader/syntax.lsp similarity index 99% rename from syntax.lsp rename to reader/syntax.lsp index d8f6a79a7aff4301e67f73f0e0e4eafd6c78338c..8835a447ba57b528ddd8facab80bd2b1593c321b 100644 --- a/syntax.lsp +++ b/reader/syntax.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "reader-aux.lsp") + (def-syntax-test syntax.whitespace.1 ;; Check that various standard or semistandard characters are whitespace[2] diff --git a/with-standard-io-syntax.lsp b/reader/with-standard-io-syntax.lsp similarity index 100% rename from with-standard-io-syntax.lsp rename to reader/with-standard-io-syntax.lsp diff --git a/sample-files/class-precedence-lists.txt b/sample-files/class-precedence-lists.txt new file mode 100644 index 0000000000000000000000000000000000000000..df11b507fd0879a2727faf3f6e77c483296c17d0 --- /dev/null +++ b/sample-files/class-precedence-lists.txt @@ -0,0 +1,2 @@ +xxx +yyy diff --git a/compile-file-test-file-2.lsp b/sample-files/compile-file-test-file-2.lsp similarity index 100% rename from compile-file-test-file-2.lsp rename to sample-files/compile-file-test-file-2.lsp diff --git a/compile-file-test-file-2a.lsp b/sample-files/compile-file-test-file-2a.lsp similarity index 100% rename from compile-file-test-file-2a.lsp rename to sample-files/compile-file-test-file-2a.lsp diff --git a/compile-file-test-file-3.lsp b/sample-files/compile-file-test-file-3.lsp similarity index 100% rename from compile-file-test-file-3.lsp rename to sample-files/compile-file-test-file-3.lsp diff --git a/compile-file-test-file-4.lsp b/sample-files/compile-file-test-file-4.lsp similarity index 100% rename from compile-file-test-file-4.lsp rename to sample-files/compile-file-test-file-4.lsp diff --git a/compile-file-test-file-5.lsp b/sample-files/compile-file-test-file-5.lsp similarity index 100% rename from compile-file-test-file-5.lsp rename to sample-files/compile-file-test-file-5.lsp diff --git a/compile-file-test-file.lsp b/sample-files/compile-file-test-file.lsp similarity index 100% rename from compile-file-test-file.lsp rename to sample-files/compile-file-test-file.lsp diff --git a/sample-files/directory-namestring.txt b/sample-files/directory-namestring.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/sample-files/enough-namestring.txt b/sample-files/enough-namestring.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/sample-files/file-length.txt b/sample-files/file-length.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6459e005434a49a66a3ddec92279a86160ad71f --- /dev/null +++ b/sample-files/file-length.txt @@ -0,0 +1 @@ +xxx diff --git a/sample-files/file-namestring.txt b/sample-files/file-namestring.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/sample-files/file-position.txt b/sample-files/file-position.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fb7365b68a15275af30986fd2e4d2fdfd121c60 --- /dev/null +++ b/sample-files/file-position.txt @@ -0,0 +1,2 @@ +;xxx + diff --git a/sample-files/file-write-date.txt b/sample-files/file-write-date.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/sample-files/host-namestring.txt b/sample-files/host-namestring.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/sample-files/input-stream-p.txt b/sample-files/input-stream-p.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/sample-files/listen.txt b/sample-files/listen.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6459e005434a49a66a3ddec92279a86160ad71f --- /dev/null +++ b/sample-files/listen.txt @@ -0,0 +1 @@ +xxx diff --git a/load-test-file-2.lsp b/sample-files/load-test-file-2.lsp similarity index 100% rename from load-test-file-2.lsp rename to sample-files/load-test-file-2.lsp diff --git a/load-test-file.lsp b/sample-files/load-test-file.lsp similarity index 100% rename from load-test-file.lsp rename to sample-files/load-test-file.lsp diff --git a/sample-files/logical-pathname.txt b/sample-files/logical-pathname.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/modules7.lsp b/sample-files/modules7.lsp similarity index 100% rename from modules7.lsp rename to sample-files/modules7.lsp diff --git a/modules8a.lsp b/sample-files/modules8a.lsp similarity index 100% rename from modules8a.lsp rename to sample-files/modules8a.lsp diff --git a/modules8b.lsp b/sample-files/modules8b.lsp similarity index 100% rename from modules8b.lsp rename to sample-files/modules8b.lsp diff --git a/sample-files/open-stream-p.txt b/sample-files/open-stream-p.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/sample-files/output-stream-p.txt b/sample-files/output-stream-p.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/sample-files/pathname.txt b/sample-files/pathname.txt new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/concatenate.lsp b/sequences/concatenate.lsp similarity index 100% rename from concatenate.lsp rename to sequences/concatenate.lsp diff --git a/copy-seq.lsp b/sequences/copy-seq.lsp similarity index 100% rename from copy-seq.lsp rename to sequences/copy-seq.lsp diff --git a/count-if-not.lsp b/sequences/count-if-not.lsp similarity index 100% rename from count-if-not.lsp rename to sequences/count-if-not.lsp diff --git a/count-if.lsp b/sequences/count-if.lsp similarity index 100% rename from count-if.lsp rename to sequences/count-if.lsp diff --git a/count.lsp b/sequences/count.lsp similarity index 100% rename from count.lsp rename to sequences/count.lsp diff --git a/elt.lsp b/sequences/elt.lsp similarity index 100% rename from elt.lsp rename to sequences/elt.lsp diff --git a/fill-strings.lsp b/sequences/fill-strings.lsp similarity index 100% rename from fill-strings.lsp rename to sequences/fill-strings.lsp diff --git a/fill.lsp b/sequences/fill.lsp similarity index 100% rename from fill.lsp rename to sequences/fill.lsp diff --git a/find-if-not.lsp b/sequences/find-if-not.lsp similarity index 100% rename from find-if-not.lsp rename to sequences/find-if-not.lsp diff --git a/find-if.lsp b/sequences/find-if.lsp similarity index 100% rename from find-if.lsp rename to sequences/find-if.lsp diff --git a/find.lsp b/sequences/find.lsp similarity index 100% rename from find.lsp rename to sequences/find.lsp diff --git a/length.lsp b/sequences/length.lsp similarity index 100% rename from length.lsp rename to sequences/length.lsp diff --git a/sequences/load.lsp b/sequences/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..ea22f23373b9a788f62d86ac9e87b9131815180a --- /dev/null +++ b/sequences/load.lsp @@ -0,0 +1,51 @@ +;;; Tests of sequences +(compile-and-load "ANSI-TESTS:AUX;search-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;subseq-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;remove-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;remove-duplicates-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "copy-seq.lsp") + (load "elt.lsp") + (load "fill.lsp") + (load "fill-strings.lsp") + (load "make-sequence.lsp") + (load "map.lsp") + (load "map-into.lsp") + (load "reduce.lsp") + (load "count.lsp") + (load "count-if.lsp") + (load "count-if-not.lsp") + (load "reverse.lsp") + (load "nreverse.lsp") + (load "sort.lsp") + (load "stable-sort.lsp") + (load "length.lsp") + (load "find.lsp") + (load "find-if.lsp") + (load "find-if-not.lsp") + (load "position.lsp") + (load "position-if.lsp") + (load "position-if-not.lsp") + (load "search-list.lsp") + (load "search-vector.lsp") + (load "search-bitvector.lsp") + (load "search-string.lsp") + (load "mismatch.lsp") + (load "replace.lsp") + (load "subseq.lsp") + (load "substitute.lsp") + (load "substitute-if.lsp") + (load "substitute-if-not.lsp") + (load "nsubstitute.lsp") + (load "nsubstitute-if.lsp") + (load "nsubstitute-if-not.lsp") + (load "concatenate.lsp") + (load "merge.lsp") + (load "remove.lsp") ;; also related funs + (load "remove-duplicates.lsp") ;; also delete-duplicates +) diff --git a/make-sequence.lsp b/sequences/make-sequence.lsp similarity index 100% rename from make-sequence.lsp rename to sequences/make-sequence.lsp diff --git a/map-into.lsp b/sequences/map-into.lsp similarity index 100% rename from map-into.lsp rename to sequences/map-into.lsp diff --git a/map.lsp b/sequences/map.lsp similarity index 100% rename from map.lsp rename to sequences/map.lsp diff --git a/merge.lsp b/sequences/merge.lsp similarity index 100% rename from merge.lsp rename to sequences/merge.lsp diff --git a/mismatch.lsp b/sequences/mismatch.lsp similarity index 100% rename from mismatch.lsp rename to sequences/mismatch.lsp diff --git a/nreverse.lsp b/sequences/nreverse.lsp similarity index 100% rename from nreverse.lsp rename to sequences/nreverse.lsp diff --git a/nsubstitute-if-not.lsp b/sequences/nsubstitute-if-not.lsp similarity index 100% rename from nsubstitute-if-not.lsp rename to sequences/nsubstitute-if-not.lsp diff --git a/nsubstitute-if.lsp b/sequences/nsubstitute-if.lsp similarity index 100% rename from nsubstitute-if.lsp rename to sequences/nsubstitute-if.lsp diff --git a/nsubstitute.lsp b/sequences/nsubstitute.lsp similarity index 100% rename from nsubstitute.lsp rename to sequences/nsubstitute.lsp diff --git a/position-if-not.lsp b/sequences/position-if-not.lsp similarity index 100% rename from position-if-not.lsp rename to sequences/position-if-not.lsp diff --git a/position-if.lsp b/sequences/position-if.lsp similarity index 100% rename from position-if.lsp rename to sequences/position-if.lsp diff --git a/position.lsp b/sequences/position.lsp similarity index 100% rename from position.lsp rename to sequences/position.lsp diff --git a/reduce.lsp b/sequences/reduce.lsp similarity index 100% rename from reduce.lsp rename to sequences/reduce.lsp diff --git a/remove-duplicates.lsp b/sequences/remove-duplicates.lsp similarity index 99% rename from remove-duplicates.lsp rename to sequences/remove-duplicates.lsp index 51b041f010970b19a7e575d9001531ca27bc4ed5..df3113fcab51923e2474e31c6d44a3c5a4826002 100644 --- a/remove-duplicates.lsp +++ b/sequences/remove-duplicates.lsp @@ -5,8 +5,8 @@ (in-package :cl-test) -(compile-and-load "remove-aux.lsp") -(compile-and-load "remove-duplicates-aux.lsp") + + (deftest random-remove-duplicates (loop for result = (random-test-remove-dups (1+ (random 20))) diff --git a/remove.lsp b/sequences/remove.lsp similarity index 99% rename from remove.lsp rename to sequences/remove.lsp index bb6f9337b4e4816321902320c478716028e96269..57ff5689e582e4db3502456a53da588f4f0bd160 100644 --- a/remove.lsp +++ b/sequences/remove.lsp @@ -3,7 +3,7 @@ ;;;; Created: Sat Sep 14 11:46:05 2002 ;;;; Contains: Tests for REMOVE -(compile-and-load "remove-aux.lsp") + (in-package :cl-test) diff --git a/replace.lsp b/sequences/replace.lsp similarity index 100% rename from replace.lsp rename to sequences/replace.lsp diff --git a/reverse.lsp b/sequences/reverse.lsp similarity index 100% rename from reverse.lsp rename to sequences/reverse.lsp diff --git a/search-bitvector.lsp b/sequences/search-bitvector.lsp similarity index 99% rename from search-bitvector.lsp rename to sequences/search-bitvector.lsp index 404fdbaf15455ee9b24b44862740faa0dec93574..cddf53a5bd78a35a90c4bcf544b27deaf618fc93 100644 --- a/search-bitvector.lsp +++ b/sequences/search-bitvector.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "search-aux.lsp") + (deftest search-bitvector.1 (let ((target *searched-bitvector*) diff --git a/search-list.lsp b/sequences/search-list.lsp similarity index 99% rename from search-list.lsp rename to sequences/search-list.lsp index 2f57c063f50a39e8013e1fc2ed42940b6ae8eee1..c75d7f09de9ed122612d0f939223cb365966522f 100644 --- a/search-list.lsp +++ b/sequences/search-list.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "search-aux.lsp") + (deftest search-list.1 (let ((target *searched-list*) diff --git a/search-string.lsp b/sequences/search-string.lsp similarity index 99% rename from search-string.lsp rename to sequences/search-string.lsp index c498395b6ba436937a55655335e13c034eff27fc..3c88a50749a0035397fe439753b20d3408ffc3e1 100644 --- a/search-string.lsp +++ b/sequences/search-string.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "search-aux.lsp") + ;;; The next test was busted due to to a stupid cut and paste ;;; error. The loop terminates immediately, doing nothing diff --git a/search-vector.lsp b/sequences/search-vector.lsp similarity index 99% rename from search-vector.lsp rename to sequences/search-vector.lsp index d441c35a4479e54c357155ce608c179c533931a7..4f1258829ae18095bb9008f054262d7a2dbc0093 100644 --- a/search-vector.lsp +++ b/sequences/search-vector.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "search-aux.lsp") + (deftest search-vector.1 (let ((target *searched-vector*) diff --git a/sort.lsp b/sequences/sort.lsp similarity index 100% rename from sort.lsp rename to sequences/sort.lsp diff --git a/stable-sort.lsp b/sequences/stable-sort.lsp similarity index 100% rename from stable-sort.lsp rename to sequences/stable-sort.lsp diff --git a/subseq.lsp b/sequences/subseq.lsp similarity index 99% rename from subseq.lsp rename to sequences/subseq.lsp index 525d06d140a68ea1dae3391c2463cd1d03c6fb9a..147f4e1140ca5425a6e1dfd13e618371f262a9f8 100644 --- a/subseq.lsp +++ b/sequences/subseq.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "subseq-aux.lsp") + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; subseq, on lists diff --git a/substitute-if-not.lsp b/sequences/substitute-if-not.lsp similarity index 100% rename from substitute-if-not.lsp rename to sequences/substitute-if-not.lsp diff --git a/substitute-if.lsp b/sequences/substitute-if.lsp similarity index 100% rename from substitute-if.lsp rename to sequences/substitute-if.lsp diff --git a/substitute.lsp b/sequences/substitute.lsp similarity index 100% rename from substitute.lsp rename to sequences/substitute.lsp diff --git a/broadcast-stream-streams.lsp b/streams/broadcast-stream-streams.lsp similarity index 100% rename from broadcast-stream-streams.lsp rename to streams/broadcast-stream-streams.lsp diff --git a/clear-input.lsp b/streams/clear-input.lsp similarity index 100% rename from clear-input.lsp rename to streams/clear-input.lsp diff --git a/clear-output.lsp b/streams/clear-output.lsp similarity index 100% rename from clear-output.lsp rename to streams/clear-output.lsp diff --git a/concatenated-stream-streams.lsp b/streams/concatenated-stream-streams.lsp similarity index 100% rename from concatenated-stream-streams.lsp rename to streams/concatenated-stream-streams.lsp diff --git a/echo-stream-input-stream.lsp b/streams/echo-stream-input-stream.lsp similarity index 100% rename from echo-stream-input-stream.lsp rename to streams/echo-stream-input-stream.lsp diff --git a/echo-stream-output-stream.lsp b/streams/echo-stream-output-stream.lsp similarity index 100% rename from echo-stream-output-stream.lsp rename to streams/echo-stream-output-stream.lsp diff --git a/file-length.lsp b/streams/file-length.lsp similarity index 93% rename from file-length.lsp rename to streams/file-length.lsp index b3e2ba0708a06e9d6c18bcce4e1a4e117028bef8..eccc5649e9b1bc67e34b72c6db3bae4dfe2cab92 100644 --- a/file-length.lsp +++ b/streams/file-length.lsp @@ -11,7 +11,7 @@ (deftest file-length.error.2 (signals-error - (with-open-file (is "file-length.lsp" :direction :input) + (with-open-file (is "sample-files/file-length.txt" :direction :input) (file-length is nil)) program-error) t) @@ -37,7 +37,7 @@ (deftest file-length.error.5 (signals-error (with-open-file - (is "file-length.lsp" :direction :input) + (is "sample-files/file-length.txt" :direction :input) (with-open-file (os "tmp.txt" :direction :output :if-exists :supersede) (let ((s (make-two-way-stream is os))) @@ -48,7 +48,7 @@ (deftest file-length.error.6 (signals-error (with-open-file - (is "file-length.lsp" :direction :input) + (is "sample-files/file-length.txt" :direction :input) (with-open-file (os "tmp.txt" :direction :output :if-exists :supersede) (let ((s (make-echo-stream is os))) @@ -71,7 +71,7 @@ (deftest file-length.error.10 (signals-error (with-open-file - (is "file-length.lsp" :direction :input) + (is "sample-files/file-length.txt" :direction :input) (let ((s (make-concatenated-stream is))) (unwind-protect (file-length s) (close s)))) type-error) @@ -94,7 +94,7 @@ (deftest file-length.1 (let ((results (multiple-value-list (with-open-file - (is "file-length.lsp" :direction :input) + (is "sample-files/file-length.txt" :direction :input) (file-length is))))) (and (= (length results) 1) (typep (car results) '(integer 1)) @@ -167,7 +167,7 @@ (deftest file-length.6 (with-open-file - (*foo* "file-length.lsp" :direction :input) + (*foo* "sample-files/file-length.txt" :direction :input) (declare (special *foo*)) (let ((s (make-synonym-stream '*foo*))) (unwind-protect diff --git a/file-position.lsp b/streams/file-position.lsp similarity index 92% rename from file-position.lsp rename to streams/file-position.lsp index 3aa3c87e61ca9d3310a0b7c4534486c559df0993..0b57fb54027a8239c387d292278c67a05bf3e728 100644 --- a/file-position.lsp +++ b/streams/file-position.lsp @@ -6,12 +6,12 @@ (in-package :cl-test) (deftest file-position.1 - (with-open-file (is "file-position.lsp":direction :input) + (with-open-file (is "sample-files/file-position.txt":direction :input) (file-position is)) 0) (deftest file-position.2 - (with-open-file (is "file-position.lsp":direction :input) + (with-open-file (is "sample-files/file-position.txt":direction :input) (values (multiple-value-list (notnot-mv (file-position is :start))) @@ -20,7 +20,7 @@ (t) 0) (deftest file-position.3 - (with-open-file (is "file-position.lsp":direction :input) + (with-open-file (is "sample-files/file-position.txt":direction :input) (values (multiple-value-list (notnot-mv (file-position is :end))) @@ -29,7 +29,7 @@ (deftest file-position.4 (with-open-file - (is "file-position.lsp":direction :input) + (is "sample-files/file-position.txt":direction :input) (values (file-position is) (read-char is) @@ -149,7 +149,7 @@ (deftest file-position.error.3 (signals-error (with-open-file - (is "file-position.lsp" :direction :input) + (is "sample-files/file-position.txt" :direction :input) (flet ((%fail () (error 'type-error))) (unless (file-position is :end) (%fail)) (let ((fp (file-position is))) @@ -161,7 +161,7 @@ (deftest file-position.error.4 (signals-error (with-open-file - (is "file-position.lsp" :direction :input) + (is "sample-files/file-position.txt" :direction :input) (file-position is 1000000000000000000000)) error) t) diff --git a/file-string-length.lsp b/streams/file-string-length.lsp similarity index 100% rename from file-string-length.lsp rename to streams/file-string-length.lsp diff --git a/finish-output.lsp b/streams/finish-output.lsp similarity index 100% rename from finish-output.lsp rename to streams/finish-output.lsp diff --git a/force-output.lsp b/streams/force-output.lsp similarity index 100% rename from force-output.lsp rename to streams/force-output.lsp diff --git a/fresh-line.lsp b/streams/fresh-line.lsp similarity index 100% rename from fresh-line.lsp rename to streams/fresh-line.lsp diff --git a/get-output-stream-string.lsp b/streams/get-output-stream-string.lsp similarity index 100% rename from get-output-stream-string.lsp rename to streams/get-output-stream-string.lsp diff --git a/streams/input-stream-p.lsp b/streams/input-stream-p.lsp new file mode 100644 index 0000000000000000000000000000000000000000..4157f8d2239ed38a09df79ab3ee6f31696b64eba --- /dev/null +++ b/streams/input-stream-p.lsp @@ -0,0 +1,40 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Tue Jan 13 19:39:27 2004 +;;;; Contains: Tests for INPUT-STREAM-P + +(in-package :cl-test) + +(deftest input-stream-p.1 + (notnot-mv (input-stream-p *standard-input*)) + t) + +(deftest input-stream-p.2 + (notnot-mv (input-stream-p *terminal-io*)) + t) + +(deftest input-stream-p.3 + (with-open-file (s "sample-files/input-stream-p.txt" :direction :input) + (notnot-mv (input-stream-p s))) + t) + +(deftest input-stream-p.4 + (with-open-file (s "scratch/foo.txt" :direction :output + :if-exists :supersede) + (input-stream-p s)) + nil) + +;;; Error tests + +(deftest input-stream-p.error.1 + (signals-error (input-stream-p) program-error) + t) + +(deftest input-stream-p.error.2 + (signals-error (input-stream-p *standard-input* nil) + program-error) + t) + +(deftest input-stream-p.error.3 + (check-type-error #'input-stream-p #'streamp) + nil) diff --git a/interactive-stream-p.lsp b/streams/interactive-stream-p.lsp similarity index 100% rename from interactive-stream-p.lsp rename to streams/interactive-stream-p.lsp diff --git a/listen.lsp b/streams/listen.lsp similarity index 97% rename from listen.lsp rename to streams/listen.lsp index 7e9b8eab014a8cbf94c2f1a09364c827e9b4695e..fce4d16553d1a51e05eae4620b5e1c81f6198750 100644 --- a/listen.lsp +++ b/streams/listen.lsp @@ -39,7 +39,7 @@ (deftest listen.7 (with-open-file - (s "listen.lsp") + (s "sample-files/listen.txt") (values (notnot (listen s)) (handler-case diff --git a/streams/load.lsp b/streams/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..0e10f9488866204cff0cd721dfbd870d4e546a23 --- /dev/null +++ b/streams/load.lsp @@ -0,0 +1,60 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Tue Jan 13 19:38:10 2004 +;;;; Contains: Load files containing tests for section 21 (streams) + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "input-stream-p.lsp") + (load "output-stream-p.lsp") + (load "interactive-stream-p.lsp") + (load "open-stream-p.lsp") + (load "stream-element-type.lsp") + (load "streamp.lsp") + (load "read-byte.lsp") + (load "peek-char.lsp") + (load "read-char.lsp") + (load "read-char-no-hang.lsp") + (load "terpri.lsp") + (load "fresh-line.lsp") + (load "unread-char.lsp") + (load "write-char.lsp") + (load "read-line.lsp") + (load "write-string.lsp") + (load "write-line.lsp") + (load "read-sequence.lsp") + (load "write-sequence.lsp") + (load "file-length.lsp") + (load "file-position.lsp") + (load "file-string-length.lsp") + (load "open.lsp") + (load "stream-external-format.lsp") + (load "with-open-file.lsp") + (load "with-open-stream.lsp") + (load "listen.lsp") + (load "clear-input.lsp") + (load "finish-output.lsp") + (load "force-output.lsp") + (load "clear-output.lsp") + (load "make-synonym-stream.lsp") + (load "synonym-stream-symbol.lsp") + (load "make-broadcast-stream.lsp") + (load "broadcast-stream-streams.lsp") + (load "make-two-way-stream.lsp") + (load "two-way-stream-input-stream.lsp") + (load "two-way-stream-output-stream.lsp") + (load "echo-stream-input-stream.lsp") + (load "echo-stream-output-stream.lsp") + (load "make-echo-stream.lsp") + (load "concatenated-stream-streams.lsp") + (load "make-concatenated-stream.lsp") + (load "get-output-stream-string.lsp") + (load "make-string-input-stream.lsp") + (load "make-string-output-stream.lsp") + (load "with-input-from-string.lsp") + (load "with-output-to-string.lsp") + (load "stream-error-stream.lsp") +) diff --git a/make-broadcast-stream.lsp b/streams/make-broadcast-stream.lsp similarity index 100% rename from make-broadcast-stream.lsp rename to streams/make-broadcast-stream.lsp diff --git a/make-concatenated-stream.lsp b/streams/make-concatenated-stream.lsp similarity index 100% rename from make-concatenated-stream.lsp rename to streams/make-concatenated-stream.lsp diff --git a/make-echo-stream.lsp b/streams/make-echo-stream.lsp similarity index 100% rename from make-echo-stream.lsp rename to streams/make-echo-stream.lsp diff --git a/make-string-input-stream.lsp b/streams/make-string-input-stream.lsp similarity index 100% rename from make-string-input-stream.lsp rename to streams/make-string-input-stream.lsp diff --git a/make-string-output-stream.lsp b/streams/make-string-output-stream.lsp similarity index 100% rename from make-string-output-stream.lsp rename to streams/make-string-output-stream.lsp diff --git a/make-synonym-stream.lsp b/streams/make-synonym-stream.lsp similarity index 100% rename from make-synonym-stream.lsp rename to streams/make-synonym-stream.lsp diff --git a/make-two-way-stream.lsp b/streams/make-two-way-stream.lsp similarity index 100% rename from make-two-way-stream.lsp rename to streams/make-two-way-stream.lsp diff --git a/open-stream-p.lsp b/streams/open-stream-p.lsp similarity index 82% rename from open-stream-p.lsp rename to streams/open-stream-p.lsp index 08e453274498a0aee1900d4c74089553ef9b8b45..e86754b537d27ee3c892ac11d5cf9d39efd96164 100644 --- a/open-stream-p.lsp +++ b/streams/open-stream-p.lsp @@ -16,24 +16,24 @@ nil) (deftest open-stream-p.2 - (with-open-file (s "open-stream-p.lsp" :direction :input) + (with-open-file (s "sample-files/open-stream-p.txt" :direction :input) (notnot-mv (open-stream-p s))) t) (deftest open-stream-p.3 - (with-open-file (s "foo.txt" :direction :output + (with-open-file (s "scratch/foo.txt" :direction :output :if-exists :supersede) (notnot-mv (open-stream-p s))) t) (deftest open-stream-p.4 - (let ((s (open "open-stream-p.lsp" :direction :input))) + (let ((s (open "sample-files/open-stream-p.txt" :direction :input))) (close s) (open-stream-p s)) nil) (deftest open-stream-p.5 - (let ((s (open "foo.txt" :direction :output + (let ((s (open "scratch/foo.txt" :direction :output :if-exists :supersede))) (close s) (open-stream-p s)) diff --git a/open.lsp b/streams/open.lsp similarity index 100% rename from open.lsp rename to streams/open.lsp diff --git a/output-stream-p.lsp b/streams/output-stream-p.lsp similarity index 86% rename from output-stream-p.lsp rename to streams/output-stream-p.lsp index 09e3afda5f7ef6877a1b1f61c8027b74100249a8..b8eb25ecedf70a03f625405c192d0facdb08dd85 100644 --- a/output-stream-p.lsp +++ b/streams/output-stream-p.lsp @@ -14,12 +14,12 @@ t) (deftest output-stream-p.3 - (with-open-file (s "output-stream-p.lsp" :direction :input) + (with-open-file (s "sample-files/output-stream-p.txt" :direction :input) (output-stream-p s)) nil) (deftest output-stream-p.4 - (with-open-file (s "foo.txt" :direction :output + (with-open-file (s "scratch/foo.txt" :direction :output :if-exists :supersede) (notnot-mv (output-stream-p s))) t) diff --git a/peek-char.lsp b/streams/peek-char.lsp similarity index 100% rename from peek-char.lsp rename to streams/peek-char.lsp diff --git a/read-byte.lsp b/streams/read-byte.lsp similarity index 100% rename from read-byte.lsp rename to streams/read-byte.lsp diff --git a/read-char-no-hang.lsp b/streams/read-char-no-hang.lsp similarity index 100% rename from read-char-no-hang.lsp rename to streams/read-char-no-hang.lsp diff --git a/read-char.lsp b/streams/read-char.lsp similarity index 100% rename from read-char.lsp rename to streams/read-char.lsp diff --git a/read-line.lsp b/streams/read-line.lsp similarity index 100% rename from read-line.lsp rename to streams/read-line.lsp diff --git a/read-sequence.lsp b/streams/read-sequence.lsp similarity index 100% rename from read-sequence.lsp rename to streams/read-sequence.lsp diff --git a/stream-element-type.lsp b/streams/stream-element-type.lsp similarity index 100% rename from stream-element-type.lsp rename to streams/stream-element-type.lsp diff --git a/stream-error-stream.lsp b/streams/stream-error-stream.lsp similarity index 100% rename from stream-error-stream.lsp rename to streams/stream-error-stream.lsp diff --git a/stream-external-format.lsp b/streams/stream-external-format.lsp similarity index 100% rename from stream-external-format.lsp rename to streams/stream-external-format.lsp diff --git a/streamp.lsp b/streams/streamp.lsp similarity index 100% rename from streamp.lsp rename to streams/streamp.lsp diff --git a/synonym-stream-symbol.lsp b/streams/synonym-stream-symbol.lsp similarity index 100% rename from synonym-stream-symbol.lsp rename to streams/synonym-stream-symbol.lsp diff --git a/terpri.lsp b/streams/terpri.lsp similarity index 100% rename from terpri.lsp rename to streams/terpri.lsp diff --git a/two-way-stream-input-stream.lsp b/streams/two-way-stream-input-stream.lsp similarity index 100% rename from two-way-stream-input-stream.lsp rename to streams/two-way-stream-input-stream.lsp diff --git a/two-way-stream-output-stream.lsp b/streams/two-way-stream-output-stream.lsp similarity index 100% rename from two-way-stream-output-stream.lsp rename to streams/two-way-stream-output-stream.lsp diff --git a/unread-char.lsp b/streams/unread-char.lsp similarity index 100% rename from unread-char.lsp rename to streams/unread-char.lsp diff --git a/with-input-from-string.lsp b/streams/with-input-from-string.lsp similarity index 100% rename from with-input-from-string.lsp rename to streams/with-input-from-string.lsp diff --git a/with-open-file.lsp b/streams/with-open-file.lsp similarity index 100% rename from with-open-file.lsp rename to streams/with-open-file.lsp diff --git a/with-open-stream.lsp b/streams/with-open-stream.lsp similarity index 100% rename from with-open-stream.lsp rename to streams/with-open-stream.lsp diff --git a/with-output-to-string.lsp b/streams/with-output-to-string.lsp similarity index 100% rename from with-output-to-string.lsp rename to streams/with-output-to-string.lsp diff --git a/write-char.lsp b/streams/write-char.lsp similarity index 100% rename from write-char.lsp rename to streams/write-char.lsp diff --git a/write-line.lsp b/streams/write-line.lsp similarity index 100% rename from write-line.lsp rename to streams/write-line.lsp diff --git a/write-sequence.lsp b/streams/write-sequence.lsp similarity index 100% rename from write-sequence.lsp rename to streams/write-sequence.lsp diff --git a/write-string.lsp b/streams/write-string.lsp similarity index 100% rename from write-string.lsp rename to streams/write-string.lsp diff --git a/base-string.lsp b/strings/base-string.lsp similarity index 100% rename from base-string.lsp rename to strings/base-string.lsp diff --git a/char-schar.lsp b/strings/char-schar.lsp similarity index 100% rename from char-schar.lsp rename to strings/char-schar.lsp diff --git a/strings/load.lsp b/strings/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..3647cb69fc64a11b6557964dc1fbd5e573a1df90 --- /dev/null +++ b/strings/load.lsp @@ -0,0 +1,29 @@ +;;; Tests of strings +(compile-and-load "ANSI-TESTS:AUX;string-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "char-schar.lsp") + (load "string.lsp") + (load "base-string.lsp") + (load "simple-string.lsp") + (load "simple-base-string.lsp") + (load "simple-string-p.lsp") + (load "stringp.lsp") + (load "string-upcase.lsp") + (load "string-downcase.lsp") + (load "string-capitalize.lsp") + (load "nstring-upcase.lsp") + (load "nstring-downcase.lsp") + (load "nstring-capitalize.lsp") + (load "string-trim.lsp") + (load "string-left-trim.lsp") + (load "string-right-trim.lsp") + +;;; Tests of string comparison functions + (load "string-comparisons.lsp") + (load "make-string.lsp") +) diff --git a/make-string.lsp b/strings/make-string.lsp similarity index 100% rename from make-string.lsp rename to strings/make-string.lsp diff --git a/nstring-capitalize.lsp b/strings/nstring-capitalize.lsp similarity index 100% rename from nstring-capitalize.lsp rename to strings/nstring-capitalize.lsp diff --git a/nstring-downcase.lsp b/strings/nstring-downcase.lsp similarity index 100% rename from nstring-downcase.lsp rename to strings/nstring-downcase.lsp diff --git a/nstring-upcase.lsp b/strings/nstring-upcase.lsp similarity index 100% rename from nstring-upcase.lsp rename to strings/nstring-upcase.lsp diff --git a/simple-base-string.lsp b/strings/simple-base-string.lsp similarity index 100% rename from simple-base-string.lsp rename to strings/simple-base-string.lsp diff --git a/simple-string-p.lsp b/strings/simple-string-p.lsp similarity index 100% rename from simple-string-p.lsp rename to strings/simple-string-p.lsp diff --git a/simple-string.lsp b/strings/simple-string.lsp similarity index 100% rename from simple-string.lsp rename to strings/simple-string.lsp diff --git a/string-capitalize.lsp b/strings/string-capitalize.lsp similarity index 100% rename from string-capitalize.lsp rename to strings/string-capitalize.lsp diff --git a/string-comparisons.lsp b/strings/string-comparisons.lsp similarity index 99% rename from string-comparisons.lsp rename to strings/string-comparisons.lsp index e66c149c34a4593af0d5e216abb58fc6e7fc4958..2035803c42b4f7e98b04e71662b39df5385193eb 100644 --- a/string-comparisons.lsp +++ b/strings/string-comparisons.lsp @@ -5,8 +5,6 @@ (in-package :cl-test) -(compile-and-load "string-aux.lsp") - (deftest string=.1 (not (string= "abc" (copy-seq "abc"))) nil) diff --git a/string-downcase.lsp b/strings/string-downcase.lsp similarity index 100% rename from string-downcase.lsp rename to strings/string-downcase.lsp diff --git a/string-left-trim.lsp b/strings/string-left-trim.lsp similarity index 100% rename from string-left-trim.lsp rename to strings/string-left-trim.lsp diff --git a/string-right-trim.lsp b/strings/string-right-trim.lsp similarity index 100% rename from string-right-trim.lsp rename to strings/string-right-trim.lsp diff --git a/string-trim.lsp b/strings/string-trim.lsp similarity index 100% rename from string-trim.lsp rename to strings/string-trim.lsp diff --git a/string-upcase.lsp b/strings/string-upcase.lsp similarity index 100% rename from string-upcase.lsp rename to strings/string-upcase.lsp diff --git a/string.lsp b/strings/string.lsp similarity index 100% rename from string.lsp rename to strings/string.lsp diff --git a/stringp.lsp b/strings/stringp.lsp similarity index 100% rename from stringp.lsp rename to strings/stringp.lsp diff --git a/structures/load.lsp b/structures/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..f78244f992cbd8be54fccd0e105016090cc5a2bb --- /dev/null +++ b/structures/load.lsp @@ -0,0 +1,13 @@ +;;; Tests of structures + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "structure-00.lsp") + (load "structures-01.lsp") + (load "structures-02.lsp") + (load "structures-03.lsp") + (load "structures-04.lsp") +) diff --git a/structure-00.lsp b/structures/structure-00.lsp similarity index 100% rename from structure-00.lsp rename to structures/structure-00.lsp diff --git a/structures-01.lsp b/structures/structures-01.lsp similarity index 100% rename from structures-01.lsp rename to structures/structures-01.lsp diff --git a/structures-02.lsp b/structures/structures-02.lsp similarity index 100% rename from structures-02.lsp rename to structures/structures-02.lsp diff --git a/structures-03.lsp b/structures/structures-03.lsp similarity index 100% rename from structures-03.lsp rename to structures/structures-03.lsp diff --git a/structures-04.lsp b/structures/structures-04.lsp similarity index 100% rename from structures-04.lsp rename to structures/structures-04.lsp diff --git a/boundp.lsp b/symbols/boundp.lsp similarity index 100% rename from boundp.lsp rename to symbols/boundp.lsp diff --git a/cl-symbols.lsp b/symbols/cl-symbols.lsp similarity index 100% rename from cl-symbols.lsp rename to symbols/cl-symbols.lsp diff --git a/copy-symbol.lsp b/symbols/copy-symbol.lsp similarity index 100% rename from copy-symbol.lsp rename to symbols/copy-symbol.lsp diff --git a/gensym.lsp b/symbols/gensym.lsp similarity index 100% rename from gensym.lsp rename to symbols/gensym.lsp diff --git a/gentemp.lsp b/symbols/gentemp.lsp similarity index 100% rename from gentemp.lsp rename to symbols/gentemp.lsp diff --git a/get.lsp b/symbols/get.lsp similarity index 100% rename from get.lsp rename to symbols/get.lsp diff --git a/keywordp.lsp b/symbols/keywordp.lsp similarity index 100% rename from keywordp.lsp rename to symbols/keywordp.lsp diff --git a/symbols/load.lsp b/symbols/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..5ff13d07e4e12145177b44e03d214c49343fc410 --- /dev/null +++ b/symbols/load.lsp @@ -0,0 +1,23 @@ +;;; Tests of symbols +(compile-and-load "ANSI-TESTS:AUX;cl-symbols-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "cl-symbols.lsp") + (load "symbolp.lsp") + (load "keywordp.lsp") + (load "make-symbol.lsp") + (load "copy-symbol.lsp") + (load "gensym.lsp") + (load "gentemp.lsp") + (load "symbol-function.lsp") + (load "symbol-name.lsp") + (load "boundp.lsp") + (load "special-operator-p.lsp") + (load "makunbound.lsp") + (load "set.lsp") + (load "remprop.lsp") + (load "get.lsp")) diff --git a/make-symbol.lsp b/symbols/make-symbol.lsp similarity index 100% rename from make-symbol.lsp rename to symbols/make-symbol.lsp diff --git a/makunbound.lsp b/symbols/makunbound.lsp similarity index 100% rename from makunbound.lsp rename to symbols/makunbound.lsp diff --git a/remprop.lsp b/symbols/remprop.lsp similarity index 100% rename from remprop.lsp rename to symbols/remprop.lsp diff --git a/set.lsp b/symbols/set.lsp similarity index 100% rename from set.lsp rename to symbols/set.lsp diff --git a/special-operator-p.lsp b/symbols/special-operator-p.lsp similarity index 100% rename from special-operator-p.lsp rename to symbols/special-operator-p.lsp diff --git a/symbol-function.lsp b/symbols/symbol-function.lsp similarity index 100% rename from symbol-function.lsp rename to symbols/symbol-function.lsp diff --git a/symbol-name.lsp b/symbols/symbol-name.lsp similarity index 100% rename from symbol-name.lsp rename to symbols/symbol-name.lsp diff --git a/symbolp.lsp b/symbols/symbolp.lsp similarity index 100% rename from symbolp.lsp rename to symbols/symbolp.lsp diff --git a/compile-file.lsp b/system-construction/compile-file.lsp similarity index 72% rename from compile-file.lsp rename to system-construction/compile-file.lsp index 855ef2732dd7e273de8bf25a3afef107c2d6e214..d0e276a9223daee9435cf2bd88e7432f89f09e96 100644 --- a/compile-file.lsp +++ b/system-construction/compile-file.lsp @@ -64,76 +64,86 @@ (funcall funname))))))) (deftest compile-file.1 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1) - t nil) + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1) t nil) (deftest compile-file.2 - (compile-file-test "compile-file-test-file-2.lsp" 'compile-file-test-fun.2 + (compile-file-test "sample-files/compile-file-test-file-2.lsp" + 'compile-file-test-fun.2 :expect-style-warnings t) t nil) (deftest compile-file.2a - (compile-file-test "compile-file-test-file-2a.lsp" 'compile-file-test-fun.2a + (compile-file-test "sample-files/compile-file-test-file-2a.lsp" + 'compile-file-test-fun.2a :expect-warnings t) t nil) (deftest compile-file.3 (let ((*package* (find-package "CL-TEST"))) - (compile-file-test "compile-file-test-file-3.lsp" 'compile-file-test-fun.3)) - t nil) + (compile-file-test "sample-files/compile-file-test-file-3.lsp" + 'compile-file-test-fun.3)) t nil) (deftest compile-file.4 (let ((*package* (find-package "CL-USER"))) - (compile-file-test "compile-file-test-file-3.lsp" 'cl-user::compile-file-test-fun.3)) - t nil) + (compile-file-test "sample-files/compile-file-test-file-3.lsp" + 'cl-user::compile-file-test-fun.3)) t nil) (deftest compile-file.5 - (compile-file-test #p"compile-file-test-file.lsp" 'compile-file-test-fun.1) - t nil) + (compile-file-test #p"sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1) t nil) (deftest compile-file.6 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :output-file "foo.fasl") t nil) (deftest compile-file.6a - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :output-file "foo.ufsl") t nil) (deftest compile-file.7 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :external-format :default) t nil) (deftest compile-file.8 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :output-file #p"foo.fasl") t nil) (deftest compile-file.9 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :print t) t nil) (deftest compile-file.10 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :verbose t) t nil) (deftest compile-file.11 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :print nil) t nil) (deftest compile-file.12 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :verbose nil) t nil) ;;; A file stream is a pathname designator (deftest compile-file.13 - (with-open-file (s "compile-file-test-file.lsp" :direction :input) + (with-open-file (s "sample-files/compile-file-test-file.lsp" :direction :input) (compile-file-test s 'compile-file-test-fun.1)) t nil) @@ -141,7 +151,7 @@ (let ((s (open "foo.fasl" :direction :output :if-exists :supersede :if-does-not-exist :create))) (close s) - (compile-file-test "compile-file-test-file.lsp" + (compile-file-test "sample-files/compile-file-test-file.lsp" 'compile-file-test-fun.1 :output-file s)) t nil) @@ -149,13 +159,13 @@ (deftest compile-file.15 (let ((*readtable* (copy-readtable nil))) (set-macro-character #\! (get-macro-character #\')) - (compile-file-test "compile-file-test-file-4.lsp" 'compile-file-test-fun.4)) - t foo) + (compile-file-test "sample-files/compile-file-test-file-4.lsp" + 'compile-file-test-fun.4)) t foo) ;;; Tests for *compile-file-truename*, *compile-file-pathname* (deftest compile-file.16 - (let* ((file #p"compile-file-test-file-5.lsp") + (let* ((file #p"sample-files/compile-file-test-file-5.lsp") (target-pathname (compile-file-pathname file)) (*compile-print* nil) (*compile-verbose* nil)) @@ -183,18 +193,20 @@ (let ((file (logical-pathname "CLTEST:COMPILE-FILE-TEST-LP.OUT"))) (with-open-file (s file :direction :output :if-exists :supersede :if-does-not-exist :create)) - (compile-file-test "compile-file-test-file.lsp" + (compile-file-test "sample-files/compile-file-test-file.lsp" 'compile-file-test-fun.1 :output-file file)) t nil) (deftest compile-file.19 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :*compile-verbose* t) t nil) (deftest compile-file.20 - (compile-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (compile-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :*compile-print* t) t nil) @@ -209,8 +221,8 @@ ;;; Error cases (deftest compile-file.error.1 - (signals-error (compile-file "nonexistent-file-to-compile.lsp") file-error) - t) + (signals-error (compile-file "sample-files/nonexistent-file-to-compile.lsp") + file-error) t) (deftest compile-file.error.2 (signals-error (compile-file) program-error) diff --git a/features.lsp b/system-construction/features.lsp similarity index 100% rename from features.lsp rename to system-construction/features.lsp diff --git a/load.lsp b/system-construction/load-file.lsp similarity index 80% rename from load.lsp rename to system-construction/load-file.lsp index 731fc5133abfc2d5fc2901b68f1ab711caa6133e..09627e5ae7062fea1bf2a5ce9b2f9f906f513b2c 100644 --- a/load.lsp +++ b/system-construction/load-file.lsp @@ -3,8 +3,6 @@ ;;;; Created: Tue Apr 12 21:51:49 2005 ;;;; Contains: Tests of LOAD -(in-package :cl-test) - (defun load-file-test (file funname &rest args &key if-does-not-exist (print nil print-p) @@ -38,12 +36,12 @@ (funcall funname)))) (deftest load.1 - (load-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1) - t nil) + (load-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1) t nil) (deftest load.2 - (load-file-test #p"compile-file-test-file.lsp" 'compile-file-test-fun.1) - t nil) + (load-file-test #p"sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1) t nil) (deftest load.3 (with-input-from-string @@ -52,22 +50,26 @@ t good) (deftest load.4 - (load-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (load-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :external-format :default) t nil) (deftest load.5 - (load-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (load-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :verbose t) t nil) (deftest load.6 - (load-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (load-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :*load-verbose* t) t nil) (deftest load.7 - (load-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (load-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :*load-verbose* t :verbose nil) t nil) @@ -78,22 +80,26 @@ t good) (deftest load.9 - (load-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (load-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :print t) t nil) (deftest load.10 - (load-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (load-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :*load-print* t) t nil) (deftest load.11 - (load-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (load-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :*load-print* t :print nil) t nil) (deftest load.12 - (load-file-test "compile-file-test-file.lsp" 'compile-file-test-fun.1 + (load-file-test "sample-files/compile-file-test-file.lsp" + 'compile-file-test-fun.1 :*load-print* nil :print t) t nil) @@ -104,7 +110,7 @@ t good) (deftest load.14 - (load "nonexistent-file.lsp" :if-does-not-exist nil) + (load "sample-files/nonexistent-file.lsp" :if-does-not-exist nil) nil) (defpackage LOAD-TEST-PACKAGE (:use "COMMON-LISP")) @@ -150,7 +156,7 @@ (t good) !FOO) (deftest load.17 - (let ((file #p"load-test-file.lsp")) + (let ((file #p"sample-files/load-test-file.lsp")) (fmakunbound 'load-file-test-fun.1) (fmakunbound 'load-file-test-fun.2) (values @@ -167,7 +173,7 @@ ;;; properly when loading compiled files (deftest load.18 - (let* ((file "load-test-file-2.lsp") + (let* ((file "sample-files/load-test-file-2.lsp") (target (enough-namestring (compile-file-pathname file)))) (declare (special *load-test-var.1* *load-test-var.2*)) (compile-file file) @@ -214,14 +220,13 @@ ;;; Error tests (deftest load.error.1 - (signals-error (load "nonexistent-file.lsp") file-error) - t) + (signals-error (load "sample-files/nonexistent-file.lsp") + file-error) t) (deftest load.error.2 (signals-error (load) program-error) t) (deftest load.error.3 - (signals-error (load "compile-file-test-file.lsp" :bad-key-arg t) - program-error) - t) + (signals-error (load "sample-files/compile-file-test-file.lsp" :bad-key-arg + t) program-error) t) diff --git a/system-construction/load.lsp b/system-construction/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..cbc5fc9d0a2ba93899f5871bdb1f321f74df41f9 --- /dev/null +++ b/system-construction/load.lsp @@ -0,0 +1,15 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Sun Dec 12 19:44:29 2004 +;;;; Contains: Load tests for system construction (section 24) + +(in-package :cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "compile-file.lsp") + (load "load-file.lsp") + (load "with-compilation-unit.lsp") + (load "features.lsp") + (load "modules.lsp")) diff --git a/modules.lsp b/system-construction/modules.lsp similarity index 91% rename from modules.lsp rename to system-construction/modules.lsp index a9bb5b29f0d8c0c7e39853acadff280ff4a0ac7e..9e66d42f16db3a6a851072e872379b0797df5cd2 100644 --- a/modules.lsp +++ b/system-construction/modules.lsp @@ -44,7 +44,7 @@ (let ((*modules* *modules*) (fn 'modules7-fun)) (when (fboundp fn) (fmakunbound fn)) - (require "MODULES-7" #p"modules7.lsp") + (require "MODULES-7" #p"sample-files/modules7.lsp") (funcall fn)) :good) @@ -53,7 +53,8 @@ (fns '(modules8a-fun modules8b-fun))) (dolist (fn fns) (when (fboundp fn) (fmakunbound fn))) - (require "MODULES-8" '(#p"modules8a.lsp" #p"modules8b.lsp")) + (require "MODULES-8" '(#p"sample-files/modules8a.lsp" + #p"sample-files/modules8b.lsp")) (mapcar #'funcall fns)) (:good :also-good)) diff --git a/with-compilation-unit.lsp b/system-construction/with-compilation-unit.lsp similarity index 100% rename from with-compilation-unit.lsp rename to system-construction/with-compilation-unit.lsp diff --git a/truename.txt b/truename.txt new file mode 100644 index 0000000000000000000000000000000000000000..d6459e005434a49a66a3ddec92279a86160ad71f --- /dev/null +++ b/truename.txt @@ -0,0 +1 @@ +xxx diff --git a/class-precedence-lists.lsp b/types-and-classes/class-precedence-lists.lsp similarity index 98% rename from class-precedence-lists.lsp rename to types-and-classes/class-precedence-lists.lsp index 6d3e78876e163f04ffaa4bf3651f5790dd0b7ea5..d669ac762d6a083719cfa64c3670decb615499cc 100644 --- a/class-precedence-lists.lsp +++ b/types-and-classes/class-precedence-lists.lsp @@ -97,7 +97,7 @@ (make-echo-stream (make-string-input-stream "foo") out)) (echo-stream stream t)) -(def-cpl-test (open "class-precedence-lists.lsp" :direction :probe) +(def-cpl-test (open "sample-files/class-precedence-lists.txt" :direction :probe) (file-stream stream t)) (def-cpl-test 1.0s0 (float real number t) float-cpl.1) diff --git a/coerce.lsp b/types-and-classes/coerce.lsp similarity index 100% rename from coerce.lsp rename to types-and-classes/coerce.lsp diff --git a/deftype.lsp b/types-and-classes/deftype.lsp similarity index 99% rename from deftype.lsp rename to types-and-classes/deftype.lsp index acc218bae9726b4120ca5a509128edea36065c0e..43b555f4831af9ed2dba2a05327a203b9d2d8cea 100644 --- a/deftype.lsp +++ b/types-and-classes/deftype.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; deftype diff --git a/types-and-classes/load.lsp b/types-and-classes/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..94ed31df1344ab9c06579ef6d0f540e8a858a4f8 --- /dev/null +++ b/types-and-classes/load.lsp @@ -0,0 +1,28 @@ +;;; Tests of types and classes +(compile-and-load "ANSI-TESTS:AUX;types-aux.lsp") + +(in-package #:cl-test) + +(let ((*default-pathname-defaults* + (make-pathname + :directory (pathname-directory *load-pathname*)))) + (load "types-and-class.lsp") + (load "types-and-class-2.lsp") + (load "coerce.lsp") + (load "subtypep.lsp") + (load "subtypep-integer.lsp") + (load "subtypep-float.lsp") + (load "subtypep-rational.lsp") + (load "subtypep-real.lsp") + #-lispworks (load "subtypep-cons.lsp") + (load "subtypep-member.lsp") + (load "subtypep-eql.lsp") + (load "subtypep-array.lsp") + (load "subtypep-function.lsp") + (load "subtypep-complex.lsp") + + (load "deftype.lsp") + (load "standard-generic-function.lsp") + (load "type-of.lsp") + (load "typep.lsp") + (load "class-precedence-lists.lsp")) diff --git a/standard-generic-function.lsp b/types-and-classes/standard-generic-function.lsp similarity index 100% rename from standard-generic-function.lsp rename to types-and-classes/standard-generic-function.lsp diff --git a/subtypep-array.lsp b/types-and-classes/subtypep-array.lsp similarity index 99% rename from subtypep-array.lsp rename to types-and-classes/subtypep-array.lsp index 341b0506a0d30eb5a7e75732fe0e44171d3509d3..fcfdcec4f8e776034b26615dd04c63b110be00a1 100644 --- a/subtypep-array.lsp +++ b/types-and-classes/subtypep-array.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + ;;; *array-element-types* is defined in ansi-aux.lsp diff --git a/subtypep-complex.lsp b/types-and-classes/subtypep-complex.lsp similarity index 99% rename from subtypep-complex.lsp rename to types-and-classes/subtypep-complex.lsp index 841dcbfd575c756a161fbd18bd53f30b186d027b..b34dd438a83fe8bd445f9da50c4f303b4a4f55ad 100644 --- a/subtypep-complex.lsp +++ b/types-and-classes/subtypep-complex.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + (deftest subtypep-complex.1 (subtypep* 'complex 'number) diff --git a/subtypep-cons.lsp b/types-and-classes/subtypep-cons.lsp similarity index 99% rename from subtypep-cons.lsp rename to types-and-classes/subtypep-cons.lsp index 7cb110a0fa0d35e25d715a21286e8f3f4ff0dbc4..991fa0e953dc0c48f6edc640e0270e966539e228 100644 --- a/subtypep-cons.lsp +++ b/types-and-classes/subtypep-cons.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + ;;; SUBTYPEP on CONS types diff --git a/subtypep-eql.lsp b/types-and-classes/subtypep-eql.lsp similarity index 97% rename from subtypep-eql.lsp rename to types-and-classes/subtypep-eql.lsp index 75ec441f4c32ff0db2e73c4ec935607d63f48b9a..47079b29a45c3909e85f1dc45c229b0e3c4261ad 100644 --- a/subtypep-eql.lsp +++ b/types-and-classes/subtypep-eql.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + (deftest subtypep.eql.1 (let ((s1 (copy-seq "abc")) diff --git a/subtypep-float.lsp b/types-and-classes/subtypep-float.lsp similarity index 99% rename from subtypep-float.lsp rename to types-and-classes/subtypep-float.lsp index 9f544be5e622ca53d1a05489789afba44ac20ed5..95e60b2cf34f01ca2810af1dfd47bd59c68e8c6c 100644 --- a/subtypep-float.lsp +++ b/types-and-classes/subtypep-float.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + ;;;;;;; diff --git a/subtypep-function.lsp b/types-and-classes/subtypep-function.lsp similarity index 93% rename from subtypep-function.lsp rename to types-and-classes/subtypep-function.lsp index ca360a0b0efc0d79c8f3d24388172eaa38e7a962..e4d8a34de5f4aee0afa1843e73cb4d2531c409bd 100644 --- a/subtypep-function.lsp +++ b/types-and-classes/subtypep-function.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + (deftest subtypep-function.1 (check-all-not-subtypep t '(function (t) t)) diff --git a/subtypep-integer.lsp b/types-and-classes/subtypep-integer.lsp similarity index 99% rename from subtypep-integer.lsp rename to types-and-classes/subtypep-integer.lsp index c6bbd6f07ed0fa9c6345cd876e6b73094527fbd8..effaa8948cbc0fbde70a2cc4bbc8ce9417483638 100644 --- a/subtypep-integer.lsp +++ b/types-and-classes/subtypep-integer.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + (deftest subtypep.fixnum-or-bignum (check-equivalence '(or fixnum bignum) 'integer) diff --git a/subtypep-member.lsp b/types-and-classes/subtypep-member.lsp similarity index 99% rename from subtypep-member.lsp rename to types-and-classes/subtypep-member.lsp index 9f17bf804b60304bd0947b30f63558a39a551c0d..5e35bbe11a20aa03e105431afe57f9de00b06a4b 100644 --- a/subtypep-member.lsp +++ b/types-and-classes/subtypep-member.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + ;;; SUBTYPEP on MEMBER types diff --git a/subtypep-rational.lsp b/types-and-classes/subtypep-rational.lsp similarity index 99% rename from subtypep-rational.lsp rename to types-and-classes/subtypep-rational.lsp index 8afced938935c101d1a8ab52fad899fe8324d12b..a6c1e2dd23f0956abf1860f993e70ec1edec2135 100644 --- a/subtypep-rational.lsp +++ b/types-and-classes/subtypep-rational.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + ;;; SUBTYPEP on rational types diff --git a/subtypep-real.lsp b/types-and-classes/subtypep-real.lsp similarity index 99% rename from subtypep-real.lsp rename to types-and-classes/subtypep-real.lsp index 6b503413ec36b0cd7bdcbb5276b13c1e030dd2bc..2b937e754c29b8cdccac4add91e7877c793f610c 100644 --- a/subtypep-real.lsp +++ b/types-and-classes/subtypep-real.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + ;;; SUBTYPEP on real types diff --git a/subtypep.lsp b/types-and-classes/subtypep.lsp similarity index 99% rename from subtypep.lsp rename to types-and-classes/subtypep.lsp index 44774ae5b7d28a79808cf0a2c41bdf0030aa30cd..2663cebb7bead952b029ac9ba280c235d640028d 100644 --- a/subtypep.lsp +++ b/types-and-classes/subtypep.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + ;;; More subtypep tests are in types-and-class.lsp diff --git a/type-of.lsp b/types-and-classes/type-of.lsp similarity index 100% rename from type-of.lsp rename to types-and-classes/type-of.lsp diff --git a/typep.lsp b/types-and-classes/typep.lsp similarity index 100% rename from typep.lsp rename to types-and-classes/typep.lsp diff --git a/types-and-class-2.lsp b/types-and-classes/types-and-class-2.lsp similarity index 99% rename from types-and-class-2.lsp rename to types-and-classes/types-and-class-2.lsp index b11f147bebdef4616ce7d539b3012eb1ad9af427..2c47f0b4aefa651221ab4a1251a10ea8c49ae9f2 100644 --- a/types-and-class-2.lsp +++ b/types-and-classes/types-and-class-2.lsp @@ -5,7 +5,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + ;;; Union of a type with its complement is universal diff --git a/types-and-class.lsp b/types-and-classes/types-and-class.lsp similarity index 99% rename from types-and-class.lsp rename to types-and-classes/types-and-class.lsp index 29150a89b7ca7e0f06b50547e32457e009c029f7..c2d57927f4a22ed6a588613ae95311f4940472f6 100644 --- a/types-and-class.lsp +++ b/types-and-classes/types-and-class.lsp @@ -7,7 +7,7 @@ (in-package :cl-test) -(compile-and-load "types-aux.lsp") + (declaim (optimize (safety 3)))