Skip to content
Snippets Groups Projects
Commit 1ba453f8 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Make test pass on ecl_bytecodes

parent 81a4ffa1
No related branches found
No related tags found
No related merge requests found
...@@ -14,11 +14,11 @@ ...@@ -14,11 +14,11 @@
;; GCL fails to warn; CMUCL, SBCL and presumably SCL defer warning to end of compilation unit; ;; GCL fails to warn; CMUCL, SBCL and presumably SCL defer warning to end of compilation unit;
;; SCL and XCL not actually tested ;; SCL and XCL not actually tested
(errors #+(or abcl allegro clisp clozure ecl lispworks mkcl xcl) compile-file-error (errors #+(or abcl allegro clisp clozure (and ecl (not ecl-bytecmp)) lispworks mkcl xcl) compile-file-error
#+(or cmu gcl sbcl scl) null #+(or cmu (and ecl ecl-bytecmp) gcl sbcl scl) null
(let ((*compile-file-warnings-behaviour* :error)) (let ((*compile-file-warnings-behaviour* :error))
(load-system :undefined-variables))) (load-system :undefined-variables)))
(errors #+(or abcl allegro clisp clozure ecl lispworks mkcl xcl) compile-file-error (errors #+(or abcl allegro clisp clozure (and ecl (not ecl-bytecmp)) lispworks mkcl xcl) compile-file-error
#+(or cmu gcl sbcl scl) null #+(or cmu (and ecl ecl-bytecmp) gcl sbcl scl) null
(let ((*compile-file-warnings-behaviour* :warning)) (let ((*compile-file-warnings-behaviour* :warning))
(load-system :undefined-variables :force t))) (load-system :undefined-variables :force t)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment