diff --git a/ansi-tests/misc.lsp b/ansi-tests/misc.lsp
index 3728e98385e9ee67a6b34a1f76971ccb7f3604fe..a7762e22415c806760ac5189714c2f7089f3930b 100644
--- a/ansi-tests/misc.lsp
+++ b/ansi-tests/misc.lsp
@@ -3294,20 +3294,3 @@
 	 (if (%f5 0 0 0) (%f5 a) 0))))
    1 2)
   1)
-
-;;; sbcl subtypep bug
-(deftest misc.198
-  (let ((t1 'cons)
-	(t2 '(or
-	      (not
-	       (cons (or (cons t ratio) (cons short-float t))
-		     (cons (cons (eql -7418623) (integer -9 53))
-			   (cons cons t))))
-	      (not
-	       (cons (cons t (eql -265039))
-		     (cons (cons t cons) t))))))
-    (if (equal (multiple-value-list (subtypep* t1 t2)) '(nil t))
-	(not (subtypep `(not ,t2) `(not ,t1)))
-      t))
-  t)
-
diff --git a/ansi-tests/subtypep-cons.lsp b/ansi-tests/subtypep-cons.lsp
index 25e58a33d4cd831e460529bd4b2024c46549bd7b..82e3bb15b987780174193190817d0f5d4f2867ce 100644
--- a/ansi-tests/subtypep-cons.lsp
+++ b/ansi-tests/subtypep-cons.lsp
@@ -254,13 +254,29 @@
     (subtypep-and-contrapositive-are-consistent t1 t2))
   t)
 
+(deftest subtypep.cons.29
+  (let ((t2 '(or (not (cons unsigned-byte cons))
+		 (not (cons (integer -6 22) rational)))))
+    (subtypep-and-contrapositive-are-consistent 'cons t2))
+  t)
 
+(deftest subtypep.cons.30
+  (let ((t1 '(not (cons t (cons t (cons cons t)))))
+	(t2 '(or (or (cons (cons t integer) t)
+		     (not (cons t (cons t cons))))
+		 (not (cons (cons (eql -27111309) t)
+			    (cons t (eql 1140730)))))))
+    (subtypep-and-contrapositive-are-consistent t1 t2))
+  t)
 
-
-
-
-
-
-
-
-
+(deftest subtypep.cons.31
+  (let ((t2 '(or
+	      (not
+	       (cons (or (cons t ratio) (cons short-float t))
+		     (cons (cons (eql -7418623) (integer -9 53))
+			   (cons cons t))))
+	      (not
+	       (cons (cons t (eql -265039))
+		     (cons (cons t cons) t))))))
+    (subtypep-and-contrapositive-are-consistent 'cons t2))
+  t)