0.8.19.22:
[sbcl/lichteblau.git] / tests / foreign.test.sh
blobf3d12b8ee4a47efeeadc38f4809cf1dc2894bfa2
1 #!/bin/sh
3 # tests related to foreign function interface and loading of shared
4 # libraries
6 # This software is part of the SBCL system. See the README file for
7 # more information.
9 # While most of SBCL is derived from the CMU CL system, the test
10 # files (like this one) were written from scratch after the fork
11 # from CMU CL.
13 # This software is in the public domain and is provided with
14 # absolutely no warranty. See the COPYING and CREDITS files for
15 # more information.
17 echo //entering foreign.test.sh
19 # simple way to make sure we're not punting by accident:
20 # setting PUNT to anything other than 104 will make non-dlopen
21 # and non-linkage-table platforms fail this
22 PUNT=104
24 testfilestem=${TMPDIR:-/tmp}/sbcl-foreign-test-$$
26 ## Make a little shared object files to test with.
28 build_so() {
29 echo building $1.so
30 if [ $(uname -p) = x86_64 ]; then
31 CFLAGS="$CFLAGS -fPIC"
33 cc -c $1.c -o $1.o $CFLAGS
34 ld -shared -o $1.so $1.o
37 echo 'int summish(int x, int y) { return 1 + x + y; }' > $testfilestem.c
38 echo 'int numberish = 42;' >> $testfilestem.c
39 echo 'int nummish(int x) { return numberish + x; }' >> $testfilestem.c
40 echo 'short negative_short() { return -1; }' >> $testfilestem.c
41 echo 'int negative_int() { return -2; }' >> $testfilestem.c
42 echo 'long negative_long() { return -3; }' >> $testfilestem.c
43 build_so $testfilestem
45 echo 'int foo = 13;' > $testfilestem-b.c
46 echo 'int bar() { return 42; }' >> $testfilestem-b.c
47 build_so $testfilestem-b
49 echo 'int foo = 42;' > $testfilestem-b2.c
50 echo 'int bar() { return 13; }' >> $testfilestem-b2.c
51 build_so $testfilestem-b2
53 echo 'int late_foo = 43;' > $testfilestem-c.c
54 echo 'int late_bar() { return 14; }' >> $testfilestem-c.c
55 build_so $testfilestem-c
57 ## Foreign definitions & load
59 cat > $testfilestem.def.lisp <<EOF
60 (define-alien-variable environ (* c-string))
61 (defvar *environ* environ)
62 (eval-when (:compile-toplevel :load-toplevel :execute)
63 (handler-case
64 (progn
65 (load-shared-object "$testfilestem.so")
66 (load-shared-object "$testfilestem-b.so"))
67 (sb-int:unsupported-operator ()
68 ;; At least as of sbcl-0.7.0.5, LOAD-SHARED-OBJECT isn't
69 ;; supported on every OS. In that case, there's nothing to test,
70 ;; and we can just fall through to success.
71 (sb-ext:quit :unix-status 22)))) ; catch that
72 (define-alien-routine summish int (x int) (y int))
73 (define-alien-variable numberish int)
74 (define-alien-routine nummish int (x int))
75 (define-alien-variable "foo" int)
76 (define-alien-routine "bar" int)
78 (define-alien-routine "negative_short" short)
79 (define-alien-routine "negative_int" int)
80 (define-alien-routine "negative_long" long)
82 ;; Test that loading an object file didn't screw up our records
83 ;; of variables visible in runtime. (This was a bug until
84 ;; Nikodemus Siivola's patch in sbcl-0.8.5.50.)
86 ;; This cannot be tested in a saved core, as there is no guarantee
87 ;; that the location will be the same.
88 (assert (= (sb-sys:sap-int (alien-sap *environ*))
89 (sb-sys:sap-int (alien-sap environ))))
91 ;; automagic restarts
92 (setf *debugger-hook*
93 (lambda (condition hook)
94 (print (list :debugger-hook condition))
95 (let ((cont (find-restart 'continue condition)))
96 (when cont
97 (invoke-restart cont)))
98 (print :fell-through)
99 (invoke-debugger condition)))
102 # Test code
103 cat > $testfilestem.test.lisp <<EOF
104 (assert (= (summish 10 20) 31))
105 (assert (= 42 numberish))
106 (setf numberish 13)
107 (assert (= 13 numberish))
108 (assert (= 14 (nummish 1)))
110 (assert (= -1 (negative-short)))
111 (assert (= -2 (negative-int)))
112 (assert (= -3 (negative-long)))
114 (print :stage-1)
116 ;; test realoading object file with new definitions
117 (assert (= 13 foo))
118 (assert (= 42 (bar)))
119 (rename-file "$testfilestem-b.so" "$testfilestem-b.bak")
120 (rename-file "$testfilestem-b2.so" "$testfilestem-b.so")
121 (load-shared-object "$testfilestem-b.so")
122 (assert (= 42 foo))
123 (assert (= 13 (bar)))
124 (rename-file "$testfilestem-b.so" "$testfilestem-b2.so")
125 (rename-file "$testfilestem-b.bak" "$testfilestem-b.so")
127 (print :stage-2)
129 ;; test late resolution
130 (define-alien-variable late-foo int)
131 (define-alien-routine late-bar int)
132 (multiple-value-bind (val err) (ignore-errors late-foo)
133 (assert (not val))
134 (assert (typep err 'undefined-alien-error)))
135 (multiple-value-bind (val err) (ignore-errors (late-bar))
136 (assert (not val))
137 (assert (typep err 'undefined-alien-error)))
138 (load-shared-object "$testfilestem-c.so")
139 (assert (= 43 late-foo))
140 (assert (= 14 (late-bar)))
142 (print :stage-3)
144 (sb-ext:quit :unix-status 52) ; success convention for Lisp program
147 ${SBCL:-sbcl} --eval "(progn (compile-file #p\"$testfilestem.def.lisp\") (sb-ext:quit :unix-status 52))"
148 if [ $? = 52 ] ; then :
149 else
150 # we can't compile the test file. something's wrong.
151 rm $testfilestem.*
152 echo test failed: $?
153 exit 1
156 echo compile ok
158 ${SBCL:-sbcl} --load $testfilestem.def.fasl --load $testfilestem.test.lisp
159 RET=$?
160 if [ $RET = 22 ]; then
161 rm $testfilestem.*
162 exit $PUNT # success -- load-shared-object not supported
163 elif [ $RET != 52 ]; then
164 rm $testfilestem.*
165 echo test failed: $?
166 exit 1
169 echo load ok
171 ${SBCL:-sbcl} --load $testfilestem.def.fasl --eval "(when (member :linkage-table *features*) (save-lisp-and-die \"$testfilestem.core\"))" <<EOF
172 (sb-ext:quit :unix-status 22) ; catch this
174 if [ $? = 22 ]; then
175 rm $testfilestem.*
176 exit $PUNT # success -- linkage-table not available
179 echo table ok
181 $SBCL_ALLOWING_CORE --core $testfilestem.core --sysinit /dev/null --userinit /dev/null --load $testfilestem.test.lisp
182 if [ $? != 52 ]; then
183 rm $testfilestem.*
184 echo test failed: $?
185 exit 1 # Failure
188 echo start ok
190 # missing object file
191 rm $testfilestem-b.so $testfilestem-b2.so
192 $SBCL_ALLOWING_CORE --core $testfilestem.core --sysinit /dev/null --userinit /dev/null <<EOF
193 (assert (= 22 (summish 10 11)))
194 (multiple-value-bind (val err) (ignore-errors (eval 'foo))
195 (assert (not val))
196 (assert (typep err 'undefined-alien-error)))
197 (multiple-value-bind (val err) (ignore-errors (eval '(bar)))
198 (assert (not val))
199 (assert (typep err 'undefined-alien-error)))
200 (quit :unix-status 52)
202 if [ $? != 52 ]; then
203 rm $testfilestem.*
204 echo test failed: $?
205 exit 1 # Failure
208 echo missing ok
210 rm $testfilestem.*
212 # success convention for script
213 exit 104