3 # This software is part of the SBCL system. See the README file for
6 # While most of SBCL is derived from the CMU CL system, the test
7 # files (like this one) were written from scratch after the fork
10 # This software is in the public domain and is provided with
11 # absolutely no warranty. See the COPYING and CREDITS files for
14 # Check that compiling and loading the file $1 generates an error
15 # at load time; also that just loading it directly (into the
16 # interpreter) generates an error.
19 # Test compiling and loading.
22 ;;; But loading the file should fail.
23 (multiple-value-bind (value0 value1) (ignore-errors (load *))
24 (assert (null value0))
25 (format t "VALUE1=~S (~A)~%" value1 value1)
26 (assert (typep value1 'error)))
27 (sb-ext:quit :unix-status 52)
30 echo compile-and-load $1 test failed: $?
34 # Test loading into the interpreter.
36 (multiple-value-bind (value0 value1) (ignore-errors (load "$1"))
37 (assert (null value0))
38 (format t "VALUE1=~S (~A)~%" value1 value1)
39 (assert (typep value1 'error)))
40 (sb-ext:quit :unix-status 52)
43 echo load-into-interpreter $1 test failed: $?
48 # Test that a file compiles cleanly, with no ERRORs, WARNINGs or
51 # Maybe this wants to be in a compiler.test.sh script? This function
52 # was originally written to test APD's patch for slot readers and
53 # writers not being known to the compiler. -- CSR, 2002-08-14
54 expect_clean_compile ()
57 (multiple-value-bind (pathname warnings-p failure-p)
59 (declare (ignore pathname))
60 (assert (not warnings-p))
61 (assert (not failure-p))
62 (sb-ext:quit :unix-status 52))
65 echo clean-compile $1 test failed: $?
70 base_tmpfilename="clos-test-$$-tmp"
71 tmpfilename="$base_tmpfilename.lisp"
72 compiled_tmpfilename="$base_tmpfilename.fasl"
74 # This should fail, but didn't until sbcl-0.6.12.7, with Martin
75 # Atzmueller's port of Pierre Mai's fixes.
76 cat > $tmpfilename <<EOF
78 ;; This definition has too many qualifiers, so loading the
79 ;; DEFMETHOD should fail.
80 (defmethod zut progn :around ((x integer)) (print "integer"))
82 expect_load_error $tmpfilename
84 # Even before sbcl-0.6.12.7, this would fail as it should. Let's
85 # make sure that it still does.
86 cat > $tmpfilename <<EOF
88 (defgeneric zut (x) (:method-combination progn))
89 ;; This definition is missing the PROGN qualifier, and so the
90 ;; DEFMETHOD should fail.
91 (defmethod zut ((x integer)) (print "integer"))
93 expect_load_error $tmpfilename
95 # Even before sbcl-0.6.12.7, this would fail as it should, but Martin
96 # Atzmueller's port of Pierre Mai's fixes caused it to generate more
97 # correct text in the error message. We can't check that in a regression
98 # test until AI gets a mite stronger, but at least we can check that
99 # the problem is still detected.
100 cat > $tmpfilename <<EOF
101 (in-package :cl-user)
102 (defgeneric zut (x) (:method-combination progn))
103 ;; This definition has too many qualifiers, so loading the
104 ;; DEFMETHOD should fail.
105 (defmethod zut progn :around ((x integer)) (print "integer"))
107 expect_load_error $tmpfilename
109 # Until sbcl-0.7.6.21, PCL signalled spurious STYLE-WARNINGs on
110 # compilation of this form; the report (bug #191a.) and a patch
111 # suppressing these were provided by Alexey Dejenka in quick
113 cat > $tmpfilename <<EOF
114 (in-package :cl-user)
115 (defclass another-class-with-slots ()
118 (values (setf (slot-value x 'a-new-slot-name) 2)
119 (slot-value x 'a-new-slot-name)))
121 expect_clean_compile $tmpfilename
124 rm $compiled_tmpfilename