diff --git a/ansi-tests/gclload1.lsp b/ansi-tests/gclload1.lsp
index 8c2cd9bc37069f571c31cda1f1dbe3ebe0f46fb0..167aab59f200285bc999dec047dc517266d69c9a 100644
--- a/ansi-tests/gclload1.lsp
+++ b/ansi-tests/gclload1.lsp
@@ -32,3 +32,5 @@
 
 #+ecl (setq c:*suppress-compiler-warnings* t
             c:*suppress-compiler-notes* t)
+
+#+clisp (setq custom::*warn-on-floating-point-contagion* nil)
diff --git a/ansi-tests/number-comparison.lsp b/ansi-tests/number-comparison.lsp
index 34ab181ec0b61a392abc9007bd5dbb0c484b43e4..a267b1e82f642a9543bb4db0d5ac637a6a2f7cfa 100644
--- a/ansi-tests/number-comparison.lsp
+++ b/ansi-tests/number-comparison.lsp
@@ -417,14 +417,12 @@
 		 when (<= (rational bound)
 			  (rational x)
 			  (rational upper-bound))
-;;		 do (print x)
-;;		    (print epsilon) (print bound) (print upper-bound) (print one) (terpri)
-;;		    (finish-output)
 		 nconc
-		 (let* ((y (float x one))
-			(z (* y (- one (* 2 epsilon)))))
-		   (list (list y z t)
-			 (list z y nil)))))
+		 (let* ((y (float x one)))
+		   (let ((z (* y (- one (* 2 epsilon)))))
+		     (list (list y z t)
+			   (list z y nil))))))
+     
      (loop for x in *universe*
 	   when (and (realp x) (< -1 x 1))
 	   nconc
@@ -448,16 +446,16 @@
 			  (rational x)
 			  (rational upper-bound))
 		 nconc
-		 (let* ((y (float x one))
-			(z1 (+ y epsilon))
-			(z2 (- y epsilon)))
-		   (list (list y z1 t)
-			 (list z1 y nil)
-			 (list y z2 nil)
-			 (list z2 y t)))))
-     )))
-
-
+		 (handler-case
+		  (let* ((y (float x one))
+			 (z1 (+ y epsilon))
+			 (z2 (- y epsilon)))
+		    (list (list y z1 t)
+			  (list z1 y nil)
+			  (list y z2 nil)
+			  (list z2 y t)))
+		  (arithmetic-error () nil)))
+	   ))))
 
 (deftest <.4
   (loop for (x y result . rest) in *number-less-tests*
@@ -657,13 +655,15 @@
 			  (rational x)
 			  (rational upper-bound))
 		 nconc
-		 (let* ((y (float x one))
-			(z1 (+ y epsilon))
-			(z2 (- y epsilon)))
-		   (list (list y z1 t)
-			 (list z1 y nil)
-			 (list y z2 nil)
-			 (list z2 y t)))))
+		 (handler-case
+		  (let* ((y (float x one))
+			 (z1 (+ y epsilon))
+			 (z2 (- y epsilon)))
+		    (list (list y z1 t)
+			  (list z1 y nil)
+			  (list y z2 nil)
+			  (list z2 y t)))
+		  (floating-point-underflow () nil))))
      )))
 
 (deftest <=.4
diff --git a/ansi-tests/numbers-aux.lsp b/ansi-tests/numbers-aux.lsp
index dbac895d42dc1c17dd538b67947beae95b0d87d0..3fcc00c5ed9d744d737027fcfdfbe5281ddd8159 100644
--- a/ansi-tests/numbers-aux.lsp
+++ b/ansi-tests/numbers-aux.lsp
@@ -130,62 +130,83 @@
   (loop for x in *reals*
 	nconc
 	(loop for y in *reals*
-	      when (and ;; (numbers-are-compatible x y)
-			(and (< x y) (> x y)))
+	      when
+	      (handler-case
+	       (and ;; (numbers-are-compatible x y)
+		(and (< x y) (> x y)))
+	       (arithmetic-error () nil))
 	      collect (list x y))))
 
 (defun <.9-fn ()
   (loop for x in *reals*
 	nconc
 	(loop for y in *reals*
-	      when (and ;; (numbers-are-compatible x y)
-			(if (< x y) (not (> y x))
-			  (> y x)))
+	      when
+	      (handler-case
+	       (and ;; (numbers-are-compatible x y)
+		(if (< x y) (not (> y x))
+		  (> y x)))
+	       (arithmetic-error () nil))
 	      collect (list x y))))
 
 (defun <.10-fn ()
   (loop for x in *reals*
 	nconc
 	(loop for y in *reals*
-	      when (and ;; (numbers-are-compatible x y)
-			(if (< x y) (>= x y)
-			  (not (>= x y))))
+	      when
+	      (handler-case
+	       (and ;; (numbers-are-compatible x y)
+		(if (< x y) (>= x y)
+		  (not (>= x y))))
+	       (arithmetic-error () nil))
 	      collect (list x y))))
 
 (defun <=.8-fn ()
   (loop for x in *reals*
 	nconc
 	(loop for y in *reals*
-	      when (and ;; (numbers-are-compatible x y)
-			(if (<= x y) (not (>= y x))
-			  (>= y x)))
+	      when
+	      (handler-case
+	       (and ;; (numbers-are-compatible x y)
+		(if (<= x y) (not (>= y x))
+		  (>= y x)))
+	       (arithmetic-error () nil))
 	      collect (list x y))))
  
 (defun <=.9-fn ()
   (loop for x in *reals*
 	nconc
 	(loop for y in *reals*
-	      when (and ;; (numbers-are-compatible x y)
-			(if (<= x y) (not (or (= x y) (< x y)))
-			  (or (= x y) (< x y))))
+	      when
+	      (handler-case
+	       (and ;; (numbers-are-compatible x y)
+		(if (<= x y) (not (or (= x y) (< x y)))
+		  (or (= x y) (< x y))))
+	       (arithmetic-error () nil))
 	      collect (list x y))))
 
 (defun >.8-fn ()
   (loop for x in *reals*
 	nconc
 	(loop for y in *reals*
-	      when (and ;; (numbers-are-compatible x y)
-			(if (> x y) (<= x y)
-			  (not (<= x y))))
+	      when
+	      (handler-case
+	       (and ;; (numbers-are-compatible x y)
+		(if (> x y) (<= x y)
+		  (not (<= x y))))
+	       (arithmetic-error () nil))
 	      collect (list x y))))
 
 (defun >=.8-fn ()
   (loop for x in *reals*
 	nconc
 	(loop for y in *reals*
-	      when (and ;; (numbers-are-compatible x y)
-			(if (>= x y) (not (or (= x y) (> x y)))
-			  (or (= x y) (> x y))))
+	      when
+	      (handler-case
+	       (and ;; (numbers-are-compatible x y)
+		(if (>= x y) (not (or (= x y) (> x y)))
+		  (or (= x y) (> x y))))
+	       (arithmetic-error () nil))
 	      collect (list x y))))
 
 ;;; Comparison of rationsls