diff --git a/ansi-tests/ansi-aux.lsp b/ansi-tests/ansi-aux.lsp
index 200411198e1cbe2ba00d218fa22f56bd0c0aa030..7efc497b7bce495492c12efef4be24a137caa2fa 100644
--- a/ansi-tests/ansi-aux.lsp
+++ b/ansi-tests/ansi-aux.lsp
@@ -1485,3 +1485,11 @@ the condition to go uncaught if it cannot be classified."
   (and (slot-exists-p object slot-name)
        (slot-boundp object slot-name)
        (slot-value object slot-name)))
+
+(defun is-noncontiguous-sublist-of (list1 list2)
+  (loop
+   for x in list1
+   do (loop
+       when (null list2) do (return-from is-noncontiguous-sublist-of nil)
+       when (eql x (pop list2)) do (return))
+   finally (return t)))
diff --git a/ansi-tests/class-precedence-lists.lsp b/ansi-tests/class-precedence-lists.lsp
new file mode 100644
index 0000000000000000000000000000000000000000..8b45037352e3c49ec7206312cf4b5b0a63daa3ce
--- /dev/null
+++ b/ansi-tests/class-precedence-lists.lsp
@@ -0,0 +1,80 @@
+;-*- Mode:     Lisp -*-
+;;;; Author:   Paul Dietz
+;;;; Created:  Wed Jun  4 20:18:29 2003
+;;;; Contains: Tests that builtin classes have the right CPLs
+
+(in-package :cl-test)
+
+(unless (fboundp 'class-precedence-list)
+  (defgeneric class-precedence-list (x)
+    (:method-combination list)
+    .
+    #.(loop for s in *cl-types-that-are-classes-symbols*
+	    collect
+	    `(:method list ((x ,s)) ',s))))
+
+(defmacro def-cpl-test (objform expected-cpl)
+  `(deftest ,(intern (concatenate 'string
+				  (symbol-name (first expected-cpl))
+				  "-CPL")
+		     :cl-test)
+     (let* ((obj ,objform)
+	    (cpl (class-precedence-list obj)))
+       (and (eql (first cpl) ',(first expected-cpl))
+	    (is-noncontiguous-sublist-of cpl ',expected-cpl)))
+     t))
+
+;;; Condition types
+
+(defmacro def-cond-cpl-test (expected-cpl)
+  `(def-cpl-test (make-condition ',(first expected-cpl)) ,expected-cpl))
+
+(def-cond-cpl-test (arithmetic-error error serious-condition condition t))
+(def-cond-cpl-test (cell-error error serious-condition condition t))
+(def-cond-cpl-test (condition t))
+(def-cond-cpl-test (control-error error serious-condition condition t))
+(def-cond-cpl-test (division-by-zero arithmetic-error error
+				     serious-condition condition t))
+(def-cond-cpl-test (error serious-condition condition t))
+(def-cond-cpl-test (file-error error serious-condition condition t))
+(def-cond-cpl-test (floating-point-inexact arithmetic-error error
+					   serious-condition condition t))
+(def-cond-cpl-test (floating-point-invalid-operation
+		    arithmetic-error error serious-condition condition t))
+(def-cond-cpl-test (floating-point-overflow arithmetic-error error
+					    serious-condition condition t))
+(def-cond-cpl-test (floating-point-underflow arithmetic-error error
+					     serious-condition condition t))
+(def-cond-cpl-test (package-error error serious-condition condition t))
+(def-cond-cpl-test (parse-error error serious-condition condition t))
+(def-cond-cpl-test (print-not-readable error serious-condition condition t))
+(def-cond-cpl-test (program-error error serious-condition condition t))
+(def-cond-cpl-test (reader-error parse-error stream-error
+				 error serious-condition condition t))
+(def-cond-cpl-test (serious-condition condition t))
+(def-cond-cpl-test (simple-condition condition t))
+(def-cond-cpl-test (simple-error simple-condition error serious-condition
+				 condition t))
+(def-cond-cpl-test (simple-type-error simple-condition type-error
+				      error serious-condition condition t))
+(def-cond-cpl-test (simple-warning simple-condition warning condition t))
+(def-cond-cpl-test (storage-condition serious-condition condition t))
+(def-cond-cpl-test (stream-error error serious-condition condition t))
+(def-cond-cpl-test (style-warning warning condition t))
+(def-cond-cpl-test (type-error error serious-condition condition t))
+(def-cond-cpl-test (unbound-slot cell-error error serious-condition condition t))
+(def-cond-cpl-test (unbound-variable cell-error error serious-condition condition t))
+(def-cond-cpl-test (undefined-function cell-error error serious-condition condition t))
+(def-cond-cpl-test (warning condition t))
+
+(def-cpl-test (make-array '(2 3 4)) (array t))
+(def-cpl-test (make-array '(10) :element-type 'bit :adjustable t :fill-pointer 5)
+  (bit-vector vector array sequence t))
+(def-cpl-test (make-broadcast-stream) (broadcast-stream stream t))
+(when (typep (class-of 'symbol) 'built-in-class)
+  (def-cpl-test (class-of 'symbol) (built-in-class class standard-object t)))
+
+
+
+
+
diff --git a/ansi-tests/remove-method.lsp b/ansi-tests/remove-method.lsp
index cd990ebc9ca1733f1e4f2bc269955c1296100683..65ed9a46b13a557ee674d2d11bf518616ae8f135 100644
--- a/ansi-tests/remove-method.lsp
+++ b/ansi-tests/remove-method.lsp
@@ -224,3 +224,5 @@
   ((1 5) (0 a))
   t
   ((0 5) (0 a)))
+
+;;; Must add tests for nonstandard method combinations