diff --git a/arrays/load.lsp b/arrays/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..1e2f0bd3f230c45d4f674a12ee40e46aeb1436dd --- /dev/null +++ b/arrays/load.lsp @@ -0,0 +1,51 @@ +;;; Tests on arrays +(compile-and-load "ANSI-TESTS:AUX;array-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;bit-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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-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/auxiliary/packages00-aux.fas b/auxiliary/packages00-aux.fas deleted file mode 100755 index ff71d4f679574ac5e2d08790bafffd132e86d9e9..0000000000000000000000000000000000000000 Binary files a/auxiliary/packages00-aux.fas and /dev/null differ diff --git a/characters/load.lsp b/characters/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..63ea04ddc5f7d9d0601946c143043e624e515ab6 --- /dev/null +++ b/characters/load.lsp @@ -0,0 +1,8 @@ +;;;; Character tests +(compile-and-load "ANSI-TESTS:AUX;char-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *load-pathname*))) + (load "character.lsp") + (load "char-compare.lsp") + (load "name-char.lsp") +) diff --git a/conditions/load.lsp b/conditions/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..31a162da0251fbba061f8cbb093754c596f989a4 --- /dev/null +++ b/conditions/load.lsp @@ -0,0 +1,29 @@ +;;; Tests of conditions +(compile-and-load "ANSI-TESTS:AUX;types-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;define-condition-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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/cons/load.lsp b/cons/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..9f4e668855c63a2be788bf76bc5be6f7fbb24fb8 --- /dev/null +++ b/cons/load.lsp @@ -0,0 +1,81 @@ +;;; Tests of conses +(compile-and-load "ANSI-TESTS:AUX;cons-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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/data-and-control-flow/load.lsp b/data-and-control-flow/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..0daa05e8f15364690d53326bc100f3cc4f17f464 --- /dev/null +++ b/data-and-control-flow/load.lsp @@ -0,0 +1,84 @@ +;;; 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") + +(let ((*default-pathname-defaults* (pathname *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/environment/load.lsp b/environment/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..be3e5b36b3f35b5383357c287445bcaff42c35dc --- /dev/null +++ b/environment/load.lsp @@ -0,0 +1,27 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; Created: Sun Dec 12 19:43:17 2004 +;;;; Contains: Load environment tests (section 25) + +(let ((*default-pathname-defaults* (pathname *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/eval-and-compile/load.lsp b/eval-and-compile/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..82f9c3885ca5a77cf3a1ddd49b15b34dda420ef2 --- /dev/null +++ b/eval-and-compile/load.lsp @@ -0,0 +1,28 @@ +;;; Tests of evaluation and compilation + +(let ((*default-pathname-defaults* (pathname *load-pathname*))) + (load "eval-and-compile/eval.lsp") + (load "eval-and-compile/eval-and-compile.lsp") + (load "eval-and-compile/compile.lsp") + (load "eval-and-compile/compiler-macros.lsp") + (load "eval-and-compile/constantp.lsp") + (load "eval-and-compile/lambda.lsp") + (load "eval-and-compile/eval-when.lsp") + (load "eval-and-compile/define-compiler-macro.lsp") + (load "eval-and-compile/define-symbol-macro.lsp") + (load "eval-and-compile/defmacro.lsp") + (load "eval-and-compile/the.lsp") + (load "eval-and-compile/symbol-macrolet.lsp") + (load "eval-and-compile/proclaim.lsp") + (load "eval-and-compile/declaim.lsp") + (load "eval-and-compile/locally.lsp") + (load "eval-and-compile/ignore.lsp") + (load "eval-and-compile/ignorable.lsp") + (load "eval-and-compile/dynamic-extent.lsp") + (load "eval-and-compile/optimize.lsp") + (load "eval-and-compile/special.lsp") + (load "eval-and-compile/macroexpand.lsp") + (load "eval-and-compile/macroexpand-1.lsp") + (load "eval-and-compile/declaration.lsp") + (load "eval-and-compile/type.lsp") + (load "eval-and-compile/macro-function.lsp")) diff --git a/files/load.lsp b/files/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..639404f3b57a73e1428282859a3137a632d147b2 --- /dev/null +++ b/files/load.lsp @@ -0,0 +1,18 @@ +;-*- 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* (pathname *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/files/load.lsp~ b/files/load.lsp~ new file mode 100644 index 0000000000000000000000000000000000000000..6dfc437a84d15c483236b1cd01e5fc5f2b97caaf --- /dev/null +++ b/files/load.lsp~ @@ -0,0 +1,17 @@ +;-*- 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* (pathname *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/load-format.lsp b/format/load.lsp similarity index 100% rename from load-format.lsp rename to format/load.lsp diff --git a/gclload2.lsp b/gclload2.lsp index 5e86ecbe63723128d9eb60558ba7f0c9fadf2e0b..efe9c071ae46a05d94ca4ce1c4fe4a52fd8989a9 100644 --- a/gclload2.lsp +++ b/gclload2.lsp @@ -1,75 +1,75 @@ ;;; Load test files ;;; 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-class/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/hash-tables/load.lsp b/hash-tables/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..2d23d2cd14fb5727ee68e8ee5d8dafefe082359e --- /dev/null +++ b/hash-tables/load.lsp @@ -0,0 +1,18 @@ +(compile-and-load "ANSI-TESTS:AUX;hash-table-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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/iteration/load.lsp b/iteration/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..c9b840ad5ef4e238cd3084d7b4f21ee76946c74f --- /dev/null +++ b/iteration/load.lsp @@ -0,0 +1,26 @@ +;;; Tests of iteration forms + +(let ((*default-pathname-defaults* (pathname *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/load-arrays.lsp b/load-arrays.lsp deleted file mode 100644 index 764add642fb5529babbacc547c59c805e01d011f..0000000000000000000000000000000000000000 --- a/load-arrays.lsp +++ /dev/null @@ -1,50 +0,0 @@ -;;; Tests on arrays -(compile-and-load "ANSI-TESTS:AUX;array-aux.lsp") -(compile-and-load "ANSI-TESTS:AUX;bit-aux.lsp") - -(load "arrays/aref.lsp") -(load "arrays/array.lsp") -(load "arrays/array-t.lsp") -(load "arrays/array-as-class.lsp") -(load "arrays/simple-array.lsp") -(load "arrays/simple-array-t.lsp") -(load "arrays/bit-vector.lsp") -(load "arrays/simple-bit-vector.lsp") -(load "arrays/make-array.lsp") -(load "arrays/adjust-array.lsp") -(load "arrays/adjustable-array-p.lsp") -(load "arrays/array-displacement.lsp") -(load "arrays/array-dimension.lsp") -(load "arrays/array-dimensions.lsp") -(load "arrays/array-element-type.lsp") -(load "arrays/array-in-bounds-p.lsp") -(load "arrays/array-misc.lsp") -(load "arrays/array-rank.lsp") -(load "arrays/array-row-major-index.lsp") -(load "arrays/array-total-size.lsp") -(load "arrays/arrayp.lsp") -(load "arrays/fill-pointer.lsp") -(load "arrays/row-major-aref.lsp") -(load "arrays/simple-vector-p.lsp") -(load "arrays/svref.lsp") -(load "arrays/upgraded-array-element-type.lsp") -(load "arrays/vector.lsp") -(load "arrays/vector-pop.lsp") -(load "arrays/vector-push.lsp") -(load "arrays/vector-push-extend.lsp") -(load "arrays/vectorp.lsp") -(load "arrays/bit.lsp") -(load "arrays/sbit.lsp") -(load "arrays/bit-and.lsp") -(load "arrays/bit-andc1.lsp") -(load "arrays/bit-andc2.lsp") -(load "arrays/bit-eqv.lsp") -(load "arrays/bit-ior.lsp") -(load "arrays/bit-nand.lsp") -(load "arrays/bit-nor.lsp") -(load "arrays/bit-orc1.lsp") -(load "arrays/bit-orc2.lsp") -(load "arrays/bit-xor.lsp") -(load "arrays/bit-not.lsp") -(load "arrays/bit-vector-p.lsp") -(load "arrays/simple-bit-vector-p.lsp") diff --git a/load-characters.lsp b/load-characters.lsp deleted file mode 100644 index eb132f16442c46a31f5d0f24d77d32f2616867b8..0000000000000000000000000000000000000000 --- a/load-characters.lsp +++ /dev/null @@ -1,6 +0,0 @@ -;;;; Character tests -(compile-and-load "ANSI-TESTS:AUX;char-aux.lsp") - -(load "characters/character.lsp") -(load "characters/char-compare.lsp") -(load "characters/name-char.lsp") diff --git a/load-conditions.lsp b/load-conditions.lsp deleted file mode 100644 index 689a7aff9fc173e4379bbe37f298e930177723dd..0000000000000000000000000000000000000000 --- a/load-conditions.lsp +++ /dev/null @@ -1,27 +0,0 @@ -;;; Tests of conditions -(compile-and-load "ANSI-TESTS:AUX;types-aux.lsp") -(compile-and-load "ANSI-TESTS:AUX;define-condition-aux.lsp") - -(load "conditions/condition.lsp") -(load "conditions/cell-error-name.lsp") -(load "conditions/assert.lsp") -(load "conditions/error.lsp") -(load "conditions/cerror.lsp") -(load "conditions/check-type.lsp") -(load "conditions/warn.lsp") -(load "conditions/invoke-debugger.lsp") -(load "conditions/handler-bind.lsp") -(load "conditions/handler-case.lsp") -(load "conditions/ignore-errors.lsp") -(load "conditions/define-condition.lsp") -(load "conditions/compute-restarts.lsp") -(load "conditions/restart-bind.lsp") -(load "conditions/restart-case.lsp") -(load "conditions/with-condition-restarts.lsp") -(load "conditions/with-simple-restart.lsp") -(load "conditions/abort.lsp") -(load "conditions/muffle-warning.lsp") -(load "conditions/continue.lsp") -(load "conditions/store-value.lsp") -(load "conditions/use-value.lsp") -(load "conditions/make-condition.lsp") diff --git a/load-cons.lsp b/load-cons.lsp deleted file mode 100644 index b32b1b7ba88f5fe9e38daf529e682da10b810389..0000000000000000000000000000000000000000 --- a/load-cons.lsp +++ /dev/null @@ -1,81 +0,0 @@ -;;; Tests of conses -(compile-and-load "ANSI-TESTS:AUX;cons-aux.lsp") - -(load "cons/cons.lsp") -(load "cons/consp.lsp") -(load "cons/atom.lsp") -(load "cons/cxr.lsp") -(load "cons/rplaca.lsp") -(load "cons/rplacd.lsp") -(load "cons/copy-tree.lsp") -(load "cons/sublis.lsp") -(load "cons/nsublis.lsp") -(load "cons/subst.lsp") -(load "cons/subst-if.lsp") -(load "cons/subst-if-not.lsp") -(load "cons/nsubst.lsp") -(load "cons/nsubst-if.lsp") -(load "cons/nsubst-if-not.lsp") -(load "cons/tree-equal.lsp") -(load "cons/copy-list.lsp") -(load "cons/list.lsp") -(load "cons/list-length.lsp") -(load "cons/listp.lsp") -(load "cons/make-list.lsp") -(load "cons/push.lsp") -(load "cons/pop.lsp") -(load "cons/pushnew.lsp") -(load "cons/adjoin.lsp") -(load "cons/nth.lsp") -(load "cons/endp.lsp") -(load "cons/nconc.lsp") -(load "cons/append.lsp") -(load "cons/revappend.lsp") -(load "cons/nreconc.lsp") -(load "cons/butlast.lsp") -(load "cons/nbutlast.lsp") -(load "cons/last.lsp") -(load "cons/ldiff.lsp") -(load "cons/tailp.lsp") -(load "cons/nthcdr.lsp") -(load "cons/rest.lsp") -(load "cons/member.lsp") -(load "cons/member-if.lsp") -(load "cons/member-if-not.lsp") - -(load "cons/mapc.lsp") -(load "cons/mapcar.lsp") -(load "cons/mapcan.lsp") -(load "cons/mapl.lsp") -(load "cons/maplist.lsp") -(load "cons/mapcon.lsp") - -(load "cons/acons.lsp") -(load "cons/assoc.lsp") -(load "cons/assoc-if.lsp") -(load "cons/assoc-if-not.lsp") -(load "cons/rassoc.lsp") -(load "cons/rassoc-if.lsp") -(load "cons/rassoc-if-not.lsp") -(load "cons/copy-alist.lsp") -(load "cons/pairlis.lsp") - -(load "cons/get-properties.lsp") -(load "cons/getf.lsp") -(load "cons/remf.lsp") - -(load "cons/intersection.lsp") -(load "cons/nintersection.lsp") -(load "cons/union.lsp") -(load "cons/nunion.lsp") -(load "cons/set-difference.lsp") -(load "cons/nset-difference.lsp") -(load "cons/set-exclusive-or.lsp") -(load "cons/nset-exclusive-or.lsp") -(load "cons/subsetp.lsp") - -;;; Misc. stuff that should be moved elsewhere -(load "cons/cons-test-01.lsp") -(load "cons/cons-test-03.lsp") -(load "cons/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 a6fe6abb141d06a106abd4c1416b5efecfb83e88..0000000000000000000000000000000000000000 --- a/load-data-and-control-flow.lsp +++ /dev/null @@ -1,82 +0,0 @@ -;;; 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") - -(load "data-and-control-flow/data-and-control-flow.lsp") -(load "data-and-control-flow/places.lsp") -(load "data-and-control-flow/psetq.lsp") -(load "data-and-control-flow/psetf.lsp") -(load "data-and-control-flow/shiftf.lsp") -(load "data-and-control-flow/rotatef.lsp") -(load "data-and-control-flow/return.lsp") -(load "data-and-control-flow/return-from.lsp") -(load "data-and-control-flow/defsetf.lsp") -(load "data-and-control-flow/define-setf-expander.lsp") - -(load "data-and-control-flow/and.lsp") -(load "data-and-control-flow/apply.lsp") -(load "data-and-control-flow/block.lsp") -(load "data-and-control-flow/call-arguments-limit.lsp") -(load "data-and-control-flow/case.lsp") -(load "data-and-control-flow/catch.lsp") -(load "data-and-control-flow/ccase.lsp") -(load "data-and-control-flow/compiled-function-p.lsp") -(load "data-and-control-flow/complement.lsp") -(load "data-and-control-flow/cond.lsp") -(load "data-and-control-flow/constantly.lsp") -(load "data-and-control-flow/ctypecase.lsp") -(load "data-and-control-flow/defconstant.lsp") -(load "data-and-control-flow/define-modify-macro.lsp") -(load "data-and-control-flow/defparameter.lsp") -(load "data-and-control-flow/defun.lsp") -(load "data-and-control-flow/defvar.lsp") -(load "data-and-control-flow/destructuring-bind.lsp") -(load "data-and-control-flow/ecase.lsp") -(load "data-and-control-flow/eql.lsp") -(load "data-and-control-flow/equal.lsp") -(load "data-and-control-flow/equalp.lsp") -(load "data-and-control-flow/etypecase.lsp") -(load "data-and-control-flow/every.lsp") -(load "data-and-control-flow/fboundp.lsp") -(load "data-and-control-flow/fdefinition.lsp") -(load "data-and-control-flow/flet.lsp") -(load "data-and-control-flow/fmakunbound.lsp") -(load "data-and-control-flow/funcall.lsp") -(load "data-and-control-flow/function-lambda-expression.lsp") -(load "data-and-control-flow/function.lsp") -(load "data-and-control-flow/functionp.lsp") -(load "data-and-control-flow/get-setf-expansion.lsp") -(load "data-and-control-flow/identity.lsp") -(load "data-and-control-flow/if.lsp") -(load "data-and-control-flow/labels.lsp") -(load "data-and-control-flow/lambda-list-keywords.lsp") -(load "data-and-control-flow/lambda-parameters-limit.lsp") -(load "data-and-control-flow/let.lsp") -(load "data-and-control-flow/letstar.lsp") -(load "data-and-control-flow/macrolet.lsp") -(load "data-and-control-flow/multiple-value-bind.lsp") -(load "data-and-control-flow/multiple-value-call.lsp") ;; include multiple-value-list -(load "data-and-control-flow/multiple-value-prog1.lsp") -(load "data-and-control-flow/multiple-value-setq.lsp") -(load "data-and-control-flow/multiple-value-list.lsp") -(load "data-and-control-flow/nil.lsp") -(load "data-and-control-flow/not-and-null.lsp") -(load "data-and-control-flow/notany.lsp") -(load "data-and-control-flow/notevery.lsp") -(load "data-and-control-flow/nth-value.lsp") -(load "data-and-control-flow/or.lsp") -(load "data-and-control-flow/prog.lsp") -(load "data-and-control-flow/prog1.lsp") -(load "data-and-control-flow/prog2.lsp") -(load "data-and-control-flow/progn.lsp") -(load "data-and-control-flow/progv.lsp") -(load "data-and-control-flow/some.lsp") -(load "data-and-control-flow/t.lsp") -(load "data-and-control-flow/tagbody.lsp") -(load "data-and-control-flow/typecase.lsp") -(load "data-and-control-flow/unless.lsp") -(load "data-and-control-flow/unwind-protect.lsp") -(load "data-and-control-flow/values-list.lsp") -(load "data-and-control-flow/values.lsp") -(load "data-and-control-flow/when.lsp") diff --git a/load-environment.lsp b/load-environment.lsp deleted file mode 100644 index bbef07365a5d9c0fc18de3e20d0a6b3450692d0a..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 "environment/apropos.lsp") -(load "environment/apropos-list.lsp") -(load "environment/describe.lsp") -(load "environment/disassemble.lsp") -(load "environment/environment-functions.lsp") -(load "environment/room.lsp") -(load "environment/time.lsp") -(load "environment/trace.lsp") ;; and untrace -(load "environment/user-homedir-pathname.lsp") - -(load "environment/decode-universal-time.lsp") -(load "environment/encode-universal-time.lsp") -(load "environment/get-universal-time.lsp") -(load "environment/sleep.lsp") -(load "environment/get-internal-time.lsp") - -(load "environment/documentation.lsp") -#-lispworks (load "environment/inspect.lsp") -(load "environment/dribble.lsp") -(load "environment/ed.lsp") - diff --git a/load-eval-and-compile.lsp b/load-eval-and-compile.lsp deleted file mode 100644 index 20a88532e63fae90f1dcaed20face9fcd3fd87ba..0000000000000000000000000000000000000000 --- a/load-eval-and-compile.lsp +++ /dev/null @@ -1,26 +0,0 @@ -;;; Tests of evaluation and compilation -(load "eval-and-compile/eval.lsp") -(load "eval-and-compile/eval-and-compile.lsp") -(load "eval-and-compile/compile.lsp") -(load "eval-and-compile/compiler-macros.lsp") -(load "eval-and-compile/constantp.lsp") -(load "eval-and-compile/lambda.lsp") -(load "eval-and-compile/eval-when.lsp") -(load "eval-and-compile/define-compiler-macro.lsp") -(load "eval-and-compile/define-symbol-macro.lsp") -(load "eval-and-compile/defmacro.lsp") -(load "eval-and-compile/the.lsp") -(load "eval-and-compile/symbol-macrolet.lsp") -(load "eval-and-compile/proclaim.lsp") -(load "eval-and-compile/declaim.lsp") -(load "eval-and-compile/locally.lsp") -(load "eval-and-compile/ignore.lsp") -(load "eval-and-compile/ignorable.lsp") -(load "eval-and-compile/dynamic-extent.lsp") -(load "eval-and-compile/optimize.lsp") -(load "eval-and-compile/special.lsp") -(load "eval-and-compile/macroexpand.lsp") -(load "eval-and-compile/macroexpand-1.lsp") -(load "eval-and-compile/declaration.lsp") -(load "eval-and-compile/type.lsp") -(load "eval-and-compile/macro-function.lsp") diff --git a/load-files.lsp b/load-files.lsp deleted file mode 100644 index e82164c014899c0f2ae4a883905261bce76ce6c9..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 "files/directory.lsp") -(load "files/probe-file.lsp") -(load "files/ensure-directories-exist.lsp") -(load "files/truename.lsp") -(load "files/file-author.lsp") -(load "files/file-write-date.lsp") -(load "files/rename-file.lsp") -(load "files/delete-file.lsp") -(load "files/file-error.lsp") diff --git a/load-hash-tables.lsp b/load-hash-tables.lsp deleted file mode 100644 index ba218355bf01f3566052d0687d21158eecb67fbc..0000000000000000000000000000000000000000 --- a/load-hash-tables.lsp +++ /dev/null @@ -1,16 +0,0 @@ -(compile-and-load "ANSI-TESTS:AUX;hash-table-aux.lsp") - -(load "hash-tables/hash-table.lsp") -(load "hash-tables/make-hash-table.lsp") -(load "hash-tables/hash-table-p.lsp") -(load "hash-tables/hash-table-count.lsp") -(load "hash-tables/hash-table-size.lsp") -(load "hash-tables/hash-table-rehash-size.lsp") -(load "hash-tables/hash-table-rehash-threshold.lsp") -(load "hash-tables/hash-table-test.lsp") -(load "hash-tables/gethash.lsp") -(load "hash-tables/remhash.lsp") -(load "hash-tables/clrhash.lsp") -(load "hash-tables/maphash.lsp") -(load "hash-tables/with-hash-table-iterator.lsp") -(load "hash-tables/sxhash.lsp") diff --git a/load-iteration.lsp b/load-iteration.lsp deleted file mode 100644 index b326e87bb66520f0598a120f06a32238f09a977b..0000000000000000000000000000000000000000 --- a/load-iteration.lsp +++ /dev/null @@ -1,24 +0,0 @@ -;;; Tests of iteration forms - -(load "iteration/do.lsp") -(load "iteration/dostar.lsp") -(load "iteration/dolist.lsp") -(load "iteration/dotimes.lsp") -(load "iteration/loop.lsp") -(load "iteration/loop1.lsp") -(load "iteration/loop2.lsp") -(load "iteration/loop3.lsp") -(load "iteration/loop4.lsp") -(load "iteration/loop5.lsp") -(load "iteration/loop6.lsp") -(load "iteration/loop7.lsp") -(load "iteration/loop8.lsp") -(load "iteration/loop9.lsp") -(load "iteration/loop10.lsp") -(load "iteration/loop11.lsp") -(load "iteration/loop12.lsp") -(load "iteration/loop13.lsp") -(load "iteration/loop14.lsp") -(load "iteration/loop15.lsp") -(load "iteration/loop16.lsp") -(load "iteration/loop17.lsp") diff --git a/load-numbers.lsp b/load-numbers.lsp deleted file mode 100644 index 6eb87fe6dcfd866ecdbf7fdba5acd6dba555805b..0000000000000000000000000000000000000000 --- a/load-numbers.lsp +++ /dev/null @@ -1,129 +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 "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") - -(load "numbers/number-comparison.lsp") -(load "numbers/max.lsp") -(load "numbers/min.lsp") -(load "numbers/minusp.lsp") -(load "numbers/plusp.lsp") -(load "numbers/zerop.lsp") -(load "numbers/floor.lsp") -(load "numbers/ffloor.lsp") -(load "numbers/ceiling.lsp") -(load "numbers/fceiling.lsp") -(load "numbers/truncate.lsp") -(load "numbers/ftruncate.lsp") -(load "numbers/round.lsp") -(load "numbers/fround.lsp") - -;;; transcendental functions go here -(load "numbers/sin.lsp") -(load "numbers/cos.lsp") -(load "numbers/tan.lsp") -(load "numbers/asin.lsp") -(load "numbers/acos.lsp") -(load "numbers/atan.lsp") - -(load "numbers/sinh.lsp") -(load "numbers/cosh.lsp") -(load "numbers/tanh.lsp") -(load "numbers/asinh.lsp") -(load "numbers/acosh.lsp") -(load "numbers/atanh.lsp") - -(load "numbers/times.lsp") -(load "numbers/plus.lsp") -(load "numbers/minus.lsp") -(load "numbers/divide.lsp") -(load "numbers/oneplus.lsp") -(load "numbers/oneminus.lsp") -(load "numbers/abs.lsp") -(load "numbers/exp.lsp") -(load "numbers/expt.lsp") -(load "numbers/gcd.lsp") -(load "numbers/incf.lsp") -(load "numbers/decf.lsp") -(load "numbers/lcm.lsp") -(load "numbers/log.lsp") -(load "numbers/signum.lsp") -(load "numbers/sqrt.lsp") -(load "numbers/isqrt.lsp") -(load "numbers/random.lsp") -(load "numbers/random-state-p.lsp") -(load "numbers/make-random-state.lsp") -(load "numbers/numberp.lsp") -(load "numbers/cis.lsp") -(load "numbers/complex.lsp") -(load "numbers/complexp.lsp") -(load "numbers/conjugate.lsp") -(load "numbers/phase.lsp") -(load "numbers/realpart.lsp") -(load "numbers/imagpart.lsp") -(load "numbers/realp.lsp") -(load "numbers/numerator-denominator.lsp") -(load "numbers/rationalp.lsp") - -(load "numbers/ash.lsp") -(load "numbers/integer-length.lsp") -(load "numbers/integerp.lsp") - -(load "numbers/parse-integer.lsp") -(load "numbers/boole.lsp") - -(load "numbers/logand.lsp") -(load "numbers/logandc1.lsp") -(load "numbers/logandc2.lsp") -(load "numbers/logeqv.lsp") -(load "numbers/logior.lsp") -(load "numbers/lognand.lsp") -(load "numbers/lognor.lsp") -(load "numbers/logorc1.lsp") -(load "numbers/logorc2.lsp") -(load "numbers/lognot.lsp") -(load "numbers/logxor.lsp") -(load "numbers/logbitp.lsp") -(load "numbers/logcount.lsp") -(load "numbers/logtest.lsp") - -(load "numbers/byte.lsp") -(load "numbers/deposit-field.lsp") -(load "numbers/dpb.lsp") -(load "numbers/ldb.lsp") -(load "numbers/mask-field.lsp") - -(load "numbers/float.lsp") -(load "numbers/floatp.lsp") - -(load "numbers/rational.lsp") -(load "numbers/rationalize.lsp") - -(load "numbers/evenp.lsp") -(load "numbers/oddp.lsp") - -(load "numbers/epsilons.lsp") -(load "numbers/real.lsp") - -(load "numbers/upgraded-complex-part-type.lsp") - -(load "numbers/arithmetic-error.lsp") - diff --git a/load-objects.lsp b/load-objects.lsp deleted file mode 100644 index 953d76984de15f38387dc7bd954baf98e16977a6..0000000000000000000000000000000000000000 --- a/load-objects.lsp +++ /dev/null @@ -1,59 +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 "ANSI-TESTS:AUX;defclass-aux.lsp") - -(load "objects/defclass.lsp") -(load "objects/defclass-01.lsp") -(load "objects/defclass-02.lsp") -(load "objects/defclass-03.lsp") -(load "objects/defclass-errors.lsp") -(load "objects/defclass-forward-reference.lsp") -(load "objects/ensure-generic-function.lsp") -(load "objects/allocate-instance.lsp") -(load "objects/reinitialize-instance.lsp") -(load "objects/shared-initialize.lsp") -(load "objects/change-class.lsp") -(load "objects/update-instance-for-different-class.lsp") -(load "objects/slot-boundp.lsp") -(load "objects/slot-exists-p.lsp") -(load "objects/slot-makunbound.lsp") -(load "objects/slot-missing.lsp") -(load "objects/slot-unbound.lsp") -(load "objects/slot-value.lsp") -(load "objects/method-qualifiers.lsp") -(load "objects/no-applicable-method.lsp") -(load "objects/no-next-method.lsp") -(load "objects/remove-method.lsp") -(load "objects/make-instance.lsp") -(load "objects/make-instances-obsolete.lsp") -(load "objects/make-load-form.lsp") -(load "objects/make-load-form-saving-slots.lsp") -(load "objects/with-accessors.lsp") -(load "objects/with-slots.lsp") -(load "objects/defgeneric.lsp") -(load "objects/defgeneric-method-combination-aux.lsp") -(load "objects/defgeneric-method-combination-plus.lsp") -(load "objects/defgeneric-method-combination-append.lsp") -(load "objects/defgeneric-method-combination-nconc.lsp") -(load "objects/defgeneric-method-combination-list.lsp") -(load "objects/defgeneric-method-combination-max.lsp") -(load "objects/defgeneric-method-combination-min.lsp") -(load "objects/defgeneric-method-combination-and.lsp") -(load "objects/defgeneric-method-combination-or.lsp") -(load "objects/defgeneric-method-combination-progn.lsp") -;; (load "objects/defgeneric-method-combination-standard.lsp") -(load "objects/find-class.lsp") -(load "objects/next-method-p.lsp") -(load "objects/call-next-method.lsp") -(load "objects/compute-applicable-methods.lsp") -(load "objects/define-method-combination.lsp") -;; (load "objects/define-method-combination-long-form.lsp") -(load "objects/find-method.lsp") -(load "objects/add-method.lsp") -(load "objects/class-name.lsp") -(load "objects/class-of.lsp") -(load "objects/unbound-slot.lsp") -(load "objects/defmethod.lsp") diff --git a/load-packages.lsp b/load-packages.lsp deleted file mode 100644 index 5464dddab97eb1582e2e3e0dba6c5d2d953eeec5..0000000000000000000000000000000000000000 --- a/load-packages.lsp +++ /dev/null @@ -1,39 +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 "ANSI-TESTS:AUX;packages00-aux.lsp") -(compile-and-load "ANSI-TESTS:AUX;package-aux.lsp") - -(load "packages/find-symbol.lsp") -(load "packages/find-all-symbols.lsp") -(load "packages/find-package.lsp") -(load "packages/list-all-packages.lsp") -(load "packages/package-name.lsp") -(load "packages/package-nicknames.lsp") -(load "packages/intern.lsp") -(load "packages/export.lsp") -(load "packages/rename-package.lsp") -(load "packages/shadow.lsp") -(load "packages/shadowing-import.lsp") -(load "packages/delete-package.lsp") -(load "packages/make-package.lsp") -(load "packages/with-package-iterator.lsp") -(load "packages/unexport.lsp") -(load "packages/unintern.lsp") -(load "packages/in-package.lsp") -(load "packages/unuse-package.lsp") -(load "packages/use-package.lsp") -(load "packages/defpackage.lsp") -(load "packages/do-symbols.lsp") -(load "packages/do-external-symbols.lsp") -(load "packages/do-all-symbols.lsp") -(load "packages/packagep.lsp") -(load "packages/package-error.lsp") -(load "packages/package-error-package.lsp") -(load "packages/keyword.lsp") -(load "packages/package-shadowing-symbols.lsp") -(load "packages/package-use-list.lsp") -(load "packages/package-used-by-list.lsp") -(load "packages/import.lsp") diff --git a/load-pathnames.lsp b/load-pathnames.lsp deleted file mode 100644 index 114fb89bff01855b24b13c8db3c31282e10a402c..0000000000000000000000000000000000000000 --- a/load-pathnames.lsp +++ /dev/null @@ -1,30 +0,0 @@ -;;;; Tests for pathnames and logical pathnames -(compile-and-load "ANSI-TESTS:AUX;pathnames-aux.lsp") - -(load "pathnames/pathnames.lsp") -(load "pathnames/pathname.lsp") -(load "pathnames/pathnamep.lsp") -(load "pathnames/make-pathname.lsp") -(load "pathnames/pathname-host.lsp") -(load "pathnames/pathname-device.lsp") -(load "pathnames/pathname-directory.lsp") -(load "pathnames/pathname-name.lsp") -(load "pathnames/pathname-type.lsp") -(load "pathnames/pathname-version.lsp") - -(load "pathnames/load-logical-pathname-translations.lsp") -(load "pathnames/logical-pathname.lsp") -(load "pathnames/logical-pathname-translations.lsp") -(load "pathnames/translate-logical-pathname.lsp") - -(load "pathnames/namestring.lsp") -(load "pathnames/file-namestring.lsp") -(load "pathnames/directory-namestring.lsp") -(load "pathnames/host-namestring.lsp") -(load "pathnames/enough-namestring.lsp") - -(load "pathnames/wild-pathname-p.lsp") -(load "pathnames/merge-pathnames.lsp") -(load "pathnames/pathname-match-p.lsp") - -(load "pathnames/parse-namestring.lsp") diff --git a/load-printer.lsp b/load-printer.lsp deleted file mode 100644 index 70ea8db926676ac1f7909fd58f7a43824a33334c..0000000000000000000000000000000000000000 --- a/load-printer.lsp +++ /dev/null @@ -1,44 +0,0 @@ -;;;; Tests of the lisp printer -(compile-and-load "ANSI-TESTS:AUX;printer-aux.lsp") -(compile-and-load "ANSI-TESTS:AUX;backquote-aux.lsp") - -(load "printer/copy-pprint-dispatch.lsp") - -(load "printer/print-integers.lsp") -(load "printer/print-ratios.lsp") -(load "printer/print-floats.lsp") -(load "printer/print-complex.lsp") -(load "printer/print-characters.lsp") -(load "printer/print-symbols.lsp") -(load "printer/print-strings.lsp") -(load "printer/print-cons.lsp") -(load "printer/print-backquote.lsp") -(load "printer/print-bit-vector.lsp") -(load "printer/print-vector.lsp") -(load "printer/print-array.lsp") -(load "printer/print-random-state.lsp") -(load "printer/print-pathname.lsp") -(load "printer/print-structure.lsp") -(load "printer/printer-control-vars.lsp") -(load "printer/pprint-dispatch.lsp") -(load "printer/pprint-fill.lsp") -(load "printer/pprint-linear.lsp") -(load "printer/pprint-tabular.lsp") -(load "printer/pprint-indent.lsp") -(load "printer/pprint-logical-block.lsp") -(load "printer/pprint-exit-if-list-exhausted.lsp") -(load "printer/pprint-newline.lsp") -(load "printer/pprint-tab.lsp") -(load "printer/print-unreadable-object.lsp") -(load "printer/write.lsp") -(load "printer/print.lsp") -(load "printer/pprint.lsp") -(load "printer/prin1.lsp") -(load "printer/princ.lsp") -(load "printer/write-to-string.lsp") -(load "printer/prin1-to-string.lsp") -(load "printer/princ-to-string.lsp") -(load "printer/print-level.lsp") -(load "printer/print-length.lsp") - -(load "load-format.lsp") diff --git a/load-reader.lsp b/load-reader.lsp deleted file mode 100644 index f5975a7ddefb2060f740d02f9813f6140f5a2d78..0000000000000000000000000000000000000000 --- a/load-reader.lsp +++ /dev/null @@ -1,20 +0,0 @@ -;;;; Tests of the reader -(compile-and-load "ANSI-TESTS:AUX;reader-aux.lsp") - -(load "reader/reader-test.lsp") -(load "reader/with-standard-io-syntax.lsp") -(load "reader/copy-readtable.lsp") -(load "reader/read.lsp") -(load "reader/read-preserving-whitespace.lsp") -(load "reader/read-delimited-list.lsp") -(load "reader/read-from-string.lsp") -(load "reader/readtable-case.lsp") -(load "reader/readtablep.lsp") -(load "reader/get-macro-character.lsp") -(load "reader/set-macro-character.lsp") -(load "reader/read-suppress.lsp") -(load "reader/set-syntax-from-char.lsp") -(load "reader/dispatch-macro-characters.lsp") - -(load "reader/syntax.lsp") -(load "reader/syntax-tokens.lsp") diff --git a/load-sequences.lsp b/load-sequences.lsp deleted file mode 100644 index 2b3841bdc5935b7fe3268e5085b98ef437016c64..0000000000000000000000000000000000000000 --- a/load-sequences.lsp +++ /dev/null @@ -1,45 +0,0 @@ -;;; 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") - -(load "sequences/copy-seq.lsp") -(load "sequences/elt.lsp") -(load "sequences/fill.lsp") -(load "sequences/fill-strings.lsp") -(load "sequences/make-sequence.lsp") -(load "sequences/map.lsp") -(load "sequences/map-into.lsp") -(load "sequences/reduce.lsp") -(load "sequences/count.lsp") -(load "sequences/count-if.lsp") -(load "sequences/count-if-not.lsp") -(load "sequences/reverse.lsp") -(load "sequences/nreverse.lsp") -(load "sequences/sort.lsp") -(load "sequences/stable-sort.lsp") -(load "sequences/length.lsp") -(load "sequences/find.lsp") -(load "sequences/find-if.lsp") -(load "sequences/find-if-not.lsp") -(load "sequences/position.lsp") -(load "sequences/position-if.lsp") -(load "sequences/position-if-not.lsp") -(load "sequences/search-list.lsp") -(load "sequences/search-vector.lsp") -(load "sequences/search-bitvector.lsp") -(load "sequences/search-string.lsp") -(load "sequences/mismatch.lsp") -(load "sequences/replace.lsp") -(load "sequences/subseq.lsp") -(load "sequences/substitute.lsp") -(load "sequences/substitute-if.lsp") -(load "sequences/substitute-if-not.lsp") -(load "sequences/nsubstitute.lsp") -(load "sequences/nsubstitute-if.lsp") -(load "sequences/nsubstitute-if-not.lsp") -(load "sequences/concatenate.lsp") -(load "sequences/merge.lsp") -(load "sequences/remove.lsp") ;; also related funs -(load "sequences/remove-duplicates.lsp") ;; also delete-duplicates diff --git a/load-streams.lsp b/load-streams.lsp deleted file mode 100644 index 8fe60c842f4a3cc568840644d80a94a17a13d8d8..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 "streams/input-stream-p.lsp") -(load "streams/output-stream-p.lsp") -(load "streams/interactive-stream-p.lsp") -(load "streams/open-stream-p.lsp") -(load "streams/stream-element-type.lsp") -(load "streams/streamp.lsp") -(load "streams/read-byte.lsp") -(load "streams/peek-char.lsp") -(load "streams/read-char.lsp") -(load "streams/read-char-no-hang.lsp") -(load "streams/terpri.lsp") -(load "streams/fresh-line.lsp") -(load "streams/unread-char.lsp") -(load "streams/write-char.lsp") -(load "streams/read-line.lsp") -(load "streams/write-string.lsp") -(load "streams/write-line.lsp") -(load "streams/read-sequence.lsp") -(load "streams/write-sequence.lsp") -(load "streams/file-length.lsp") -(load "streams/file-position.lsp") -(load "streams/file-string-length.lsp") -(load "streams/open.lsp") -(load "streams/stream-external-format.lsp") -(load "streams/with-open-file.lsp") -(load "streams/with-open-stream.lsp") -(load "streams/listen.lsp") -(load "streams/clear-input.lsp") -(load "streams/finish-output.lsp") -(load "streams/force-output.lsp") -(load "streams/clear-output.lsp") -(load "streams/make-synonym-stream.lsp") -(load "streams/synonym-stream-symbol.lsp") -(load "streams/make-broadcast-stream.lsp") -(load "streams/broadcast-stream-streams.lsp") -(load "streams/make-two-way-stream.lsp") -(load "streams/two-way-stream-input-stream.lsp") -(load "streams/two-way-stream-output-stream.lsp") -(load "streams/echo-stream-input-stream.lsp") -(load "streams/echo-stream-output-stream.lsp") -(load "streams/make-echo-stream.lsp") -(load "streams/concatenated-stream-streams.lsp") -(load "streams/make-concatenated-stream.lsp") -(load "streams/get-output-stream-string.lsp") -(load "streams/make-string-input-stream.lsp") -(load "streams/make-string-output-stream.lsp") -(load "streams/with-input-from-string.lsp") -(load "streams/with-output-to-string.lsp") -(load "streams/stream-error-stream.lsp") - diff --git a/load-strings.lsp b/load-strings.lsp deleted file mode 100644 index c0b4b1ab1a81908b7c56cd71cc295337e94ab15d..0000000000000000000000000000000000000000 --- a/load-strings.lsp +++ /dev/null @@ -1,23 +0,0 @@ -;;; Tests of strings -(compile-and-load "ANSI-TESTS:AUX;string-aux.lsp") - -(load "strings/char-schar.lsp") -(load "strings/string.lsp") -(load "strings/base-string.lsp") -(load "strings/simple-string.lsp") -(load "strings/simple-base-string.lsp") -(load "strings/simple-string-p.lsp") -(load "strings/stringp.lsp") -(load "strings/string-upcase.lsp") -(load "strings/string-downcase.lsp") -(load "strings/string-capitalize.lsp") -(load "strings/nstring-upcase.lsp") -(load "strings/nstring-downcase.lsp") -(load "strings/nstring-capitalize.lsp") -(load "strings/string-trim.lsp") -(load "strings/string-left-trim.lsp") -(load "strings/string-right-trim.lsp") - -;;; Tests of string comparison functions -(load "strings/string-comparisons.lsp") -(load "strings/make-string.lsp") diff --git a/load-structures.lsp b/load-structures.lsp deleted file mode 100644 index 8dcdf4eb80dd5be0261368c754b5eddd8443dee7..0000000000000000000000000000000000000000 --- a/load-structures.lsp +++ /dev/null @@ -1,7 +0,0 @@ -;;; Tests of structures - -(load "structures/structure-00.lsp") -(load "structures/structures-01.lsp") -(load "structures/structures-02.lsp") -(load "structures/structures-03.lsp") -(load "structures/structures-04.lsp") diff --git a/load-symbols.lsp b/load-symbols.lsp deleted file mode 100644 index 6828552380525098399531efe8a244466804ae63..0000000000000000000000000000000000000000 --- a/load-symbols.lsp +++ /dev/null @@ -1,19 +0,0 @@ -;;; Tests of symbols -(compile-and-load "ANSI-TESTS:AUX;cl-symbols-aux.lsp") - -(load "symbols/cl-symbols.lsp") -(load "symbols/symbolp.lsp") -(load "symbols/keywordp.lsp") -(load "symbols/make-symbol.lsp") -(load "symbols/copy-symbol.lsp") -(load "symbols/gensym.lsp") -(load "symbols/gentemp.lsp") -(load "symbols/symbol-function.lsp") -(load "symbols/symbol-name.lsp") -(load "symbols/boundp.lsp") -(load "symbols/special-operator-p.lsp") -(load "symbols/makunbound.lsp") -(load "symbols/set.lsp") -(load "symbols/remprop.lsp") -(load "symbols/get.lsp") - diff --git a/load-system-construction.lsp b/load-system-construction.lsp deleted file mode 100644 index 4620fa242a3e8e5b4af4df7741a6f63e59a1fa13..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 "system-construction/compile-file.lsp") -(load "system-construction/load.lsp") -(load "system-construction/with-compilation-unit.lsp") -(load "system-construction/features.lsp") -(load "system-construction/modules.lsp") diff --git a/load-types-and-class.lsp b/load-types-and-class.lsp deleted file mode 100644 index 35c1657fb9ceb24d321510561a16b1d6062f4201..0000000000000000000000000000000000000000 --- a/load-types-and-class.lsp +++ /dev/null @@ -1,23 +0,0 @@ -;;; Tests of types and classes -(compile-and-load "ANSI-TESTS:AUX;types-aux.lsp") - -(load "types-and-classes/types-and-class.lsp") -(load "types-and-classes/types-and-class-2.lsp") -(load "types-and-classes/coerce.lsp") -(load "types-and-classes/subtypep.lsp") -(load "types-and-classes/subtypep-integer.lsp") -(load "types-and-classes/subtypep-float.lsp") -(load "types-and-classes/subtypep-rational.lsp") -(load "types-and-classes/subtypep-real.lsp") -#-lispworks (load "types-and-classes/subtypep-cons.lsp") -(load "types-and-classes/subtypep-member.lsp") -(load "types-and-classes/subtypep-eql.lsp") -(load "types-and-classes/subtypep-array.lsp") -(load "types-and-classes/subtypep-function.lsp") -(load "types-and-classes/subtypep-complex.lsp") - -(load "types-and-classes/deftype.lsp") -(load "types-and-classes/standard-generic-function.lsp") -(load "types-and-classes/type-of.lsp") -(load "types-and-classes/typep.lsp") -(load "types-and-classes/class-precedence-lists.lsp") diff --git a/load-misc.lsp b/misc/load.lsp similarity index 69% rename from load-misc.lsp rename to misc/load.lsp index fb3b9b6d150bad9e6f9aff25d29d60ee5b411f86..6f62edfd435c89fac0e4d9dfe7f8b7d6d757874b 100644 --- a/load-misc.lsp +++ b/misc/load.lsp @@ -5,8 +5,9 @@ ;;; Miscellaneous tests, mostly tests that failed in random testing ;;; on various implementations -(load "misc/misc.lsp") +(let ((*default-pathname-defaults* (pathname *load-pathname*))) + (load "misc.lsp") ;;; Misc. tests dealing with type propagation in CMUCL -(load "misc/misc-cmucl-type-prop.lsp") - + (load "misc-cmucl-type-prop.lsp") +) diff --git a/numbers/load.lsp b/numbers/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..f0dd77dc505e083274ad48ea344f889e4160edd7 --- /dev/null +++ b/numbers/load.lsp @@ -0,0 +1,130 @@ +;-*- 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 "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") + +(let ((*default-pathname-defaults* (pathname *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 "earithmetic-error.lsp") +) diff --git a/objects/load.lsp b/objects/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..80d52055d17d492d215b974885242dcbb31e4353 --- /dev/null +++ b/objects/load.lsp @@ -0,0 +1,61 @@ +;-*- 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") + +(let ((*default-pathname-defaults* (pathname *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/packages/load.lsp b/packages/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..568a0fab793f51c3f4865f7188cba06afafe4f97 --- /dev/null +++ b/packages/load.lsp @@ -0,0 +1,41 @@ +;-*- 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") + +(let ((*default-pathname-defaults* (pathname *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/pathnames/load.lsp b/pathnames/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..c0e1c50d307406c5e4523575c313465170d30134 --- /dev/null +++ b/pathnames/load.lsp @@ -0,0 +1,32 @@ +;;;; Tests for pathnames and logical pathnames +(compile-and-load "ANSI-TESTS:AUX;pathnames-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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/printer/load.lsp b/printer/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..b08ff8cb74954cc5696511fc20dcad8f93096eaf --- /dev/null +++ b/printer/load.lsp @@ -0,0 +1,46 @@ +;;;; Tests of the lisp printer +(compile-and-load "ANSI-TESTS:AUX;printer-aux.lsp") +(compile-and-load "ANSI-TESTS:AUX;backquote-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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-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/reader/load.lsp b/reader/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..1d4c76dc5dd55323cafc6b02a538a416c72c19a3 --- /dev/null +++ b/reader/load.lsp @@ -0,0 +1,22 @@ +;;;; Tests of the reader +(compile-and-load "ANSI-TESTS:AUX;reader-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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/sequences/load.lsp b/sequences/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..b65f1be3a7e6772ad07c9c72f5a46f602937a974 --- /dev/null +++ b/sequences/load.lsp @@ -0,0 +1,47 @@ +;;; 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") + +(let ((*default-pathname-defaults* (pathname *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/streams/load.lsp b/streams/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..27f279152180d7810f5530cd35813f9aa8f403e2 --- /dev/null +++ b/streams/load.lsp @@ -0,0 +1,58 @@ +;-*- 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* (pathname *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/strings/load.lsp b/strings/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..c616ed5e111424e5291e3be24a5c49f9ae6326c9 --- /dev/null +++ b/strings/load.lsp @@ -0,0 +1,25 @@ +;;; Tests of strings +(compile-and-load "ANSI-TESTS:AUX;string-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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/structures/load.lsp b/structures/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..993031e9d23ea4db518856fdca2a34556c76fbae --- /dev/null +++ b/structures/load.lsp @@ -0,0 +1,9 @@ +;;; Tests of structures + +(let ((*default-pathname-defaults* (pathname *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/symbols/load.lsp b/symbols/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..472f84b00544f38a3b69825d44ec5a3b0787b368 --- /dev/null +++ b/symbols/load.lsp @@ -0,0 +1,19 @@ +;;; Tests of symbols +(compile-and-load "ANSI-TESTS:AUX;cl-symbols-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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/system-construction/load-file.lsp b/system-construction/load-file.lsp new file mode 100644 index 0000000000000000000000000000000000000000..731fc5133abfc2d5fc2901b68f1ab711caa6133e --- /dev/null +++ b/system-construction/load-file.lsp @@ -0,0 +1,227 @@ +;-*- Mode: Lisp -*- +;;;; Author: Paul Dietz +;;;; 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) + (verbose nil verbose-p) + (*load-print* nil) + (*load-verbose* nil) + external-format) + (declare (ignorable external-format if-does-not-exist + print print-p verbose verbose-p)) + (fmakunbound funname) + (let* ((str (make-array '(0) :element-type 'character :adjustable t + :fill-pointer 0)) + (vals (multiple-value-list + (with-output-to-string + (*standard-output* str) + (apply #'load file :allow-other-keys t args)))) + (print? (if print-p print *load-print*)) + (verbose? (if verbose-p verbose *load-verbose*))) + (values + (let ((v1 (car vals)) + (v2 (or (and verbose-p (not verbose)) + (and (not verbose-p) (not *load-verbose*)) + (position #\; str))) + (v3 (or (and print-p (not print)) + (and (not print-p) (not *load-print*)) + (> (length str) 0))) + (v4 (if (or print? verbose?) + (> (length str) 0) + t))) + (if (and (= (length vals) 1) v1 v2 v3 v4) t (list vals v2 v3 v4 str))) + (funcall funname)))) + +(deftest load.1 + (load-file-test "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) + +(deftest load.3 + (with-input-from-string + (s "(in-package :cl-test) (defun load-file-test-fun.2 () 'good)") + (load-file-test s 'load-file-test-fun.2)) + t good) + +(deftest load.4 + (load-file-test "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 + :verbose t) + t nil) + +(deftest load.6 + (load-file-test "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-verbose* t :verbose nil) + t nil) + +(deftest load.8 + (with-input-from-string + (s "(in-package :cl-test) (defun load-file-test-fun.2 () 'good)") + (load-file-test s 'load-file-test-fun.2 :verbose t)) + t good) + +(deftest load.9 + (load-file-test "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-print* t) + t nil) + +(deftest load.11 + (load-file-test "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-print* nil :print t) + t nil) + +(deftest load.13 + (with-input-from-string + (s "(in-package :cl-test) (defun load-file-test-fun.2 () 'good)") + (load-file-test s 'load-file-test-fun.2 :print t)) + t good) + +(deftest load.14 + (load "nonexistent-file.lsp" :if-does-not-exist nil) + nil) + +(defpackage LOAD-TEST-PACKAGE (:use "COMMON-LISP")) + +(deftest load.15 + (let ((*package* (find-package "LOAD-TEST-PACKAGE"))) + (with-input-from-string + (s "(defun f () 'good)") + (load-file-test s 'load-test-package::f))) + t load-test-package::good) + +(deftest load.15a + (let ((*package* (find-package "CL-TEST"))) + (values + (with-input-from-string + (s "(eval-when (:load-toplevel :execute) (setq *package* (find-package \"LOAD-TEST-PACKAGE\"))) + (defun f () 'good)") + (multiple-value-list (load-file-test s 'load-test-package::f))) + (read-from-string "GOOD"))) + (t load-test-package::good) good) + +(deftest load.16 + (let ((*readtable* (copy-readtable nil))) + (set-macro-character #\! (get-macro-character #\')) + (with-input-from-string + (s "(in-package :cl-test) (defun load-file-test-fun.3 () !good)") + (load-file-test s 'load-file-test-fun.3))) + t good) + +(deftest load.16a + (let ((*readtable* *readtable*) + (*package* (find-package "CL-TEST"))) + (values + (with-input-from-string + (s "(in-package :cl-test) + (eval-when (:load-toplevel :execute) + (setq *readtable* (copy-readtable nil)) + (set-macro-character #\\! (get-macro-character #\\'))) + (defun load-file-test-fun.3 () !good)") + (multiple-value-list + (load-file-test s 'load-file-test-fun.3))) + (read-from-string "!FOO"))) + (t good) !FOO) + +(deftest load.17 + (let ((file #p"load-test-file.lsp")) + (fmakunbound 'load-file-test-fun.1) + (fmakunbound 'load-file-test-fun.2) + (values + (notnot (load file)) + (let ((p1 (pathname (merge-pathnames file))) + (p2 (funcall 'load-file-test-fun.1))) + (equalpt-or-report p1 p2)) + (let ((p1 (truename file)) + (p2 (funcall 'load-file-test-fun.2))) + (equalpt-or-report p1 p2)))) + t t t) + +;;; Test that the load pathname/truename variables are bound +;;; properly when loading compiled files + +(deftest load.18 + (let* ((file "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) + (makunbound '*load-test-var.1*) + (makunbound '*load-test-var.2*) + (load target) + (values + (let ((p1 (pathname (merge-pathnames target))) + (p2 *load-test-var.1*)) + (equalpt-or-report p1 p2)) + (let ((p1 (truename target)) + (p2 *load-test-var.2*)) + (equalpt-or-report p1 p2)))) + t t) + +(deftest load.19 + (let ((file (logical-pathname "CLTEST:LDTEST.LSP")) + (fn 'load-test-fun-3) + (*package* (find-package "CL-TEST"))) + (with-open-file + (s file :direction :output :if-exists :supersede + :if-does-not-exist :create) + (format s "(in-package :cl-test) (defun ~a () :foo)" fn)) + (fmakunbound fn) + (values + (notnot (load file)) + (funcall fn))) + t :foo) + +;;; Defaults of the load variables + +(deftest load-pathname.1 + *load-pathname* + nil) + +(deftest load-truename.1 + *load-truename* + nil) + +(deftest load-print.1 + *load-print* + nil) + +;;; Error tests + +(deftest load.error.1 + (signals-error (load "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) diff --git a/system-construction/load.lsp b/system-construction/load.lsp index 731fc5133abfc2d5fc2901b68f1ab711caa6133e..0d03e9cbf8398ac494a50c6c906287178dd4dd2d 100644 --- a/system-construction/load.lsp +++ b/system-construction/load.lsp @@ -1,227 +1,15 @@ ;-*- Mode: Lisp -*- ;;;; Author: Paul Dietz -;;;; Created: Tue Apr 12 21:51:49 2005 -;;;; Contains: Tests of LOAD +;;;; Created: Sun Dec 12 19:44:29 2004 +;;;; Contains: Load tests for system construction (section 24) (in-package :cl-test) -(defun load-file-test (file funname &rest args &key - if-does-not-exist - (print nil print-p) - (verbose nil verbose-p) - (*load-print* nil) - (*load-verbose* nil) - external-format) - (declare (ignorable external-format if-does-not-exist - print print-p verbose verbose-p)) - (fmakunbound funname) - (let* ((str (make-array '(0) :element-type 'character :adjustable t - :fill-pointer 0)) - (vals (multiple-value-list - (with-output-to-string - (*standard-output* str) - (apply #'load file :allow-other-keys t args)))) - (print? (if print-p print *load-print*)) - (verbose? (if verbose-p verbose *load-verbose*))) - (values - (let ((v1 (car vals)) - (v2 (or (and verbose-p (not verbose)) - (and (not verbose-p) (not *load-verbose*)) - (position #\; str))) - (v3 (or (and print-p (not print)) - (and (not print-p) (not *load-print*)) - (> (length str) 0))) - (v4 (if (or print? verbose?) - (> (length str) 0) - t))) - (if (and (= (length vals) 1) v1 v2 v3 v4) t (list vals v2 v3 v4 str))) - (funcall funname)))) +(let ((*default-pathname-defaults* (pathname *load-pathname*))) + (load "compile-file.lsp") + (load "load-file.lsp") + (load "with-compilation-unit.lsp") + (load "features.lsp") + (load "modules.lsp") +) -(deftest load.1 - (load-file-test "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) - -(deftest load.3 - (with-input-from-string - (s "(in-package :cl-test) (defun load-file-test-fun.2 () 'good)") - (load-file-test s 'load-file-test-fun.2)) - t good) - -(deftest load.4 - (load-file-test "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 - :verbose t) - t nil) - -(deftest load.6 - (load-file-test "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-verbose* t :verbose nil) - t nil) - -(deftest load.8 - (with-input-from-string - (s "(in-package :cl-test) (defun load-file-test-fun.2 () 'good)") - (load-file-test s 'load-file-test-fun.2 :verbose t)) - t good) - -(deftest load.9 - (load-file-test "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-print* t) - t nil) - -(deftest load.11 - (load-file-test "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-print* nil :print t) - t nil) - -(deftest load.13 - (with-input-from-string - (s "(in-package :cl-test) (defun load-file-test-fun.2 () 'good)") - (load-file-test s 'load-file-test-fun.2 :print t)) - t good) - -(deftest load.14 - (load "nonexistent-file.lsp" :if-does-not-exist nil) - nil) - -(defpackage LOAD-TEST-PACKAGE (:use "COMMON-LISP")) - -(deftest load.15 - (let ((*package* (find-package "LOAD-TEST-PACKAGE"))) - (with-input-from-string - (s "(defun f () 'good)") - (load-file-test s 'load-test-package::f))) - t load-test-package::good) - -(deftest load.15a - (let ((*package* (find-package "CL-TEST"))) - (values - (with-input-from-string - (s "(eval-when (:load-toplevel :execute) (setq *package* (find-package \"LOAD-TEST-PACKAGE\"))) - (defun f () 'good)") - (multiple-value-list (load-file-test s 'load-test-package::f))) - (read-from-string "GOOD"))) - (t load-test-package::good) good) - -(deftest load.16 - (let ((*readtable* (copy-readtable nil))) - (set-macro-character #\! (get-macro-character #\')) - (with-input-from-string - (s "(in-package :cl-test) (defun load-file-test-fun.3 () !good)") - (load-file-test s 'load-file-test-fun.3))) - t good) - -(deftest load.16a - (let ((*readtable* *readtable*) - (*package* (find-package "CL-TEST"))) - (values - (with-input-from-string - (s "(in-package :cl-test) - (eval-when (:load-toplevel :execute) - (setq *readtable* (copy-readtable nil)) - (set-macro-character #\\! (get-macro-character #\\'))) - (defun load-file-test-fun.3 () !good)") - (multiple-value-list - (load-file-test s 'load-file-test-fun.3))) - (read-from-string "!FOO"))) - (t good) !FOO) - -(deftest load.17 - (let ((file #p"load-test-file.lsp")) - (fmakunbound 'load-file-test-fun.1) - (fmakunbound 'load-file-test-fun.2) - (values - (notnot (load file)) - (let ((p1 (pathname (merge-pathnames file))) - (p2 (funcall 'load-file-test-fun.1))) - (equalpt-or-report p1 p2)) - (let ((p1 (truename file)) - (p2 (funcall 'load-file-test-fun.2))) - (equalpt-or-report p1 p2)))) - t t t) - -;;; Test that the load pathname/truename variables are bound -;;; properly when loading compiled files - -(deftest load.18 - (let* ((file "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) - (makunbound '*load-test-var.1*) - (makunbound '*load-test-var.2*) - (load target) - (values - (let ((p1 (pathname (merge-pathnames target))) - (p2 *load-test-var.1*)) - (equalpt-or-report p1 p2)) - (let ((p1 (truename target)) - (p2 *load-test-var.2*)) - (equalpt-or-report p1 p2)))) - t t) - -(deftest load.19 - (let ((file (logical-pathname "CLTEST:LDTEST.LSP")) - (fn 'load-test-fun-3) - (*package* (find-package "CL-TEST"))) - (with-open-file - (s file :direction :output :if-exists :supersede - :if-does-not-exist :create) - (format s "(in-package :cl-test) (defun ~a () :foo)" fn)) - (fmakunbound fn) - (values - (notnot (load file)) - (funcall fn))) - t :foo) - -;;; Defaults of the load variables - -(deftest load-pathname.1 - *load-pathname* - nil) - -(deftest load-truename.1 - *load-truename* - nil) - -(deftest load-print.1 - *load-print* - nil) - -;;; Error tests - -(deftest load.error.1 - (signals-error (load "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) diff --git a/types-and-classes/load.lsp b/types-and-classes/load.lsp new file mode 100644 index 0000000000000000000000000000000000000000..5caaae4fcbb24a1c1a0bf8ad73abd4a65ef0c5de --- /dev/null +++ b/types-and-classes/load.lsp @@ -0,0 +1,25 @@ +;;; Tests of types and classes +(compile-and-load "ANSI-TESTS:AUX;types-aux.lsp") + +(let ((*default-pathname-defaults* (pathname *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") +)