diff --git a/test/test-undeferred-warnings.script b/test/test-undeferred-warnings.script
index 36fed7965d06e7427882ca4bf6db609f45b97a64..5c163fcaade44cb295f4d12ca23fc431ba30d00b 100644
--- a/test/test-undeferred-warnings.script
+++ b/test/test-undeferred-warnings.script
@@ -11,13 +11,14 @@
   :components ((:file "fun-with-undefined-locals")))
 
 
-#+(or allegro clozure cmu sbcl scl)
-(progn
-  (errors #+(or allegro clozure) compile-file-error
-          #+(or cmu sbcl scl) null
-          (let ((*compile-file-warnings-behaviour* :error))
-            (load-system :undefined-variables)))
-  (errors #+(or allegro clozure) compile-file-error
-          #+(or cmu sbcl scl) null
-          (let ((*compile-file-warnings-behaviour* :warning))
-            (load-system :undefined-variables :force t))))
+;; GCL fails to warn; CMUCL, SBCL and presumably SCL defer warning to end of compilation unit;
+;; SCL and XCL not actually tested
+
+(errors #+(or abcl allegro clisp clozure ecl lispworks mkcl xcl) compile-file-error
+        #+(or cmu gcl sbcl scl) null
+        (let ((*compile-file-warnings-behaviour* :error))
+          (load-system :undefined-variables)))
+(errors #+(or abcl allegro clisp clozure ecl lispworks mkcl xcl) compile-file-error
+        #+(or cmu gcl sbcl scl) null
+        (let ((*compile-file-warnings-behaviour* :warning))
+          (load-system :undefined-variables :force t)))