1.0.19.33: Improved interrupt handling on darwin/x86[-64]
[sbcl/eslaughter.git] / tests / foreign.test.sh
blob8c8a79c15857481d618f4aca32c60797f2cb0c16
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 . ./subr.sh
18 use_test_subdirectory
20 echo //entering foreign.test.sh
22 # simple way to make sure we're not punting by accident:
23 # setting PUNT to anything other than 104 will make non-dlopen
24 # and non-linkage-table platforms fail this
25 PUNT=$EXIT_TEST_WIN
27 ## Make some shared object files to test with.
29 build_so() (
30 echo building $1.so
31 set +u
32 case "`uname -m`" in
33 x86_64|amd64|mips|mips64)
34 CFLAGS="$CFLAGS -fPIC"
36 esac
37 if [ "`uname`" = Darwin ]; then
38 SO_FLAGS="-bundle"
39 if run_sbcl --eval '(sb-ext:quit :unix-status #+x86-64 0 #-x86-64 1)'; then
40 CFLAGS="$CFLAGS -arch x86_64"
42 else
43 SO_FLAGS="-shared"
45 cc -c $1.c -o $1.o $CFLAGS
46 ld $SO_FLAGS -o $1.so $1.o
49 # We want to bail out in case any of these Unix programs fails.
50 set -e
52 cat > $TEST_FILESTEM.c <<EOF
53 int summish(int x, int y) { return 1 + x + y; }
55 int numberish = 42;
57 int nummish(int x) { return numberish + x; }
59 short negative_short() { return -1; }
60 int negative_int() { return -2; }
61 long negative_long() { return -3; }
63 long long powish(unsigned int x, unsigned int y) {
64 long long acc = 1;
65 long long xx = (long long) x;
66 for(; y != 1; y /= 2) {
67 if (y & 1) {
68 acc *= xx;
69 y -= 1;
71 xx *= xx;
73 return xx*acc;
76 float return9th(float f1, float f2, float f3, float f4, float f5,
77 float f6, float f7, float f8, float f9, float f10,
78 float f11, float f12) {
79 return f9;
82 double return9thd(double f1, double f2, double f3, double f4, double f5,
83 double f6, double f7, double f8, double f9, double f10,
84 double f11, double f12) {
85 return f9;
88 int long_test8(int a1, int a2, int a3, int a4, int a5,
89 int a6, int a7, long long l1) {
90 return (l1 == powish(2,34));
93 int long_test9(int a1, int a2, int a3, int a4, int a5,
94 int a6, int a7, long long l1, int a8) {
95 return (l1 == powish(2,35));
98 int long_test2(int i1, int i2, int i3, int i4, int i5, int i6,
99 int i7, int i8, int i9, long long l1, long long l2) {
100 return (l1 == (1 + powish(2,37)));
103 long long return_long_long() {
104 return powish(2,33);
108 build_so $TEST_FILESTEM
110 echo 'int foo = 13;' > $TEST_FILESTEM-b.c
111 echo 'int bar() { return 42; }' >> $TEST_FILESTEM-b.c
112 build_so $TEST_FILESTEM-b
114 echo 'int foo = 42;' > $TEST_FILESTEM-b2.c
115 echo 'int bar() { return 13; }' >> $TEST_FILESTEM-b2.c
116 build_so $TEST_FILESTEM-b2
118 echo 'int late_foo = 43;' > $TEST_FILESTEM-c.c
119 echo 'int late_bar() { return 14; }' >> $TEST_FILESTEM-c.c
120 build_so $TEST_FILESTEM-c
122 ## Foreign definitions & load
124 cat > $TEST_FILESTEM.base.lisp <<EOF
125 (define-alien-variable environ (* c-string))
126 (defvar *environ* environ)
127 (eval-when (:compile-toplevel :load-toplevel :execute)
128 (handler-case
129 (progn
130 (load-shared-object "$TEST_FILESTEM.so")
131 (load-shared-object "$TEST_FILESTEM-b.so"))
132 (sb-int:unsupported-operator ()
133 ;; At least as of sbcl-0.7.0.5, LOAD-SHARED-OBJECT isn't
134 ;; supported on every OS. In that case, there's nothing to test,
135 ;; and we can just fall through to success.
136 (sb-ext:quit :unix-status 22)))) ; catch that
137 (define-alien-routine summish int (x int) (y int))
138 (define-alien-variable numberish int)
139 (define-alien-routine nummish int (x int))
140 (define-alien-variable "foo" int)
141 (define-alien-routine "bar" int)
143 (define-alien-routine "negative_short" short)
144 (define-alien-routine "negative_int" int)
145 (define-alien-routine "negative_long" long)
147 (define-alien-routine return9th float (input1 float) (input2 float) (input3 float) (input4 float) (input5 float) (input6 float) (input7 float) (input8 float) (input9 float) (input10 float) (input11 float) (input12 float))
148 (define-alien-routine return9thd double (f1 double) (f2 double) (f3 double) (f4 double) (f5 double) (f6 double) (f7 double) (f8 double) (f9 double) (f10 double) (f11 double) (f12 double))
150 (define-alien-routine long-test8 int (int1 int) (int2 int) (int3 int) (int4 int) (int5 int) (int6 int) (int7 int) (long1 (integer 64)))
151 (define-alien-routine long-test9 int (int1 int) (int2 int) (int3 int) (int4 int) (int5 int) (int6 int) (int7 int) (long1 (integer 64)) (int8 int))
152 (define-alien-routine long-test2 int (int1 int) (int2 int) (int3 int) (int4 int) (int5 int) (int6 int) (int7 int) (int8 int) (int9 int) (long1 (integer 64)) (long2 (integer 64)))
153 (define-alien-routine return-long-long (integer 64))
155 ;; compiling this gets us the FOP-FOREIGN-DATAREF-FIXUP on
156 ;; linkage-table ports
157 (defvar *extern* (extern-alien "negative_short" short))
159 ;; Test that loading an object file didn't screw up our records
160 ;; of variables visible in runtime. (This was a bug until
161 ;; Nikodemus Siivola's patch in sbcl-0.8.5.50.)
163 ;; This cannot be tested in a saved core, as there is no guarantee
164 ;; that the location will be the same.
165 (assert (= (sb-sys:sap-int (alien-sap *environ*))
166 (sb-sys:sap-int (alien-sap environ))))
168 ;; automagic restarts
169 (setf *invoke-debugger-hook*
170 (lambda (condition hook)
171 (declare (ignore hook))
172 (princ condition)
173 (let ((cont (find-restart 'continue condition)))
174 (when cont
175 (invoke-restart cont)))
176 (print :fell-through)
177 (invoke-debugger condition)))
180 echo "(declaim (optimize speed))" > $TEST_FILESTEM.fast.lisp
181 cat $TEST_FILESTEM.base.lisp >> $TEST_FILESTEM.fast.lisp
183 echo "(declaim (optimize space))" > $TEST_FILESTEM.small.lisp
184 cat $TEST_FILESTEM.base.lisp >> $TEST_FILESTEM.small.lisp
186 # Test code
187 cat > $TEST_FILESTEM.test.lisp <<EOF
188 ;; FIXME: currently the start/small case fails on x86/Darwin. Moving
189 ;; this NOTE definition to the base.lisp file fixes that, but obviously
190 ;; it is better fo figure out what is going on instead of doing that...
192 ;; Other trivialish changes that mask the error include:
193 ;; * loading the .lisp file instead of the .fasl at the save test
194 ;; * --eval 'nil' before loading the .fasl at the save test
196 ;; HATE.
197 (defun note (x)
198 (write-line x *standard-output*)
199 (force-output *standard-output*))
200 (note "/initial assertions")
201 (assert (= 31 (summish 10 20)))
202 (assert (= 42 numberish))
203 (setf numberish 13)
204 (assert (= 13 numberish))
205 (assert (= 14 (nummish 1)))
207 (assert (= -1 (negative-short)))
208 (assert (= -2 (negative-int)))
209 (assert (= -3 (negative-long)))
211 (assert (= 9.0s0 (return9th 1.0s0 2.0s0 3.0s0 4.0s0 5.0s0 6.0s0 7.0s0 8.0s0 9.0s0 10.0s0 11.0s0 12.0s0)))
212 (assert (= 9.0d0 (return9thd 1.0d0 2.0d0 3.0d0 4.0d0 5.0d0 6.0d0 7.0d0 8.0d0 9.0d0 10.0d0 11.0d0 12.0d0)))
214 (assert (= 1 (long-test8 1 2 3 4 5 6 7 (ash 1 34))))
215 (assert (= 1 (long-test9 1 2 3 4 5 6 7 (ash 1 35) 8)))
216 (assert (= 1 (long-test2 1 2 3 4 5 6 7 8 9 (+ 1 (ash 1 37)) 15)))
217 (assert (= (ash 1 33) (return-long-long)))
219 (note "/initial assertions ok")
221 ;; test reloading object file with new definitions
222 (assert (= 13 foo))
223 (assert (= 42 (bar)))
224 (note "/original definitions ok")
225 (rename-file "$TEST_FILESTEM-b.so" "$TEST_FILESTEM-b.bak")
226 (rename-file "$TEST_FILESTEM-b2.so" "$TEST_FILESTEM-b.so")
227 (load-shared-object "$TEST_FILESTEM-b.so")
228 (note "/reloading ok")
229 (assert (= 42 foo))
230 (assert (= 13 (bar)))
231 (note "/redefined versions ok")
232 (rename-file "$TEST_FILESTEM-b.so" "$TEST_FILESTEM-b2.so")
233 (rename-file "$TEST_FILESTEM-b.bak" "$TEST_FILESTEM-b.so")
234 (note "/renamed back to originals")
236 ;; test late resolution
237 #+linkage-table
238 (progn
239 (note "/starting linkage table tests")
240 (define-alien-variable late-foo int)
241 (define-alien-routine late-bar int)
242 (multiple-value-bind (val err) (ignore-errors late-foo)
243 (assert (not val))
244 (assert (typep err 'undefined-alien-error)))
245 (multiple-value-bind (val err) (ignore-errors (late-bar))
246 (assert (not val))
247 (assert (typep err 'undefined-alien-error)))
248 (load-shared-object "$TEST_FILESTEM-c.so")
249 (assert (= 43 late-foo))
250 (assert (= 14 (late-bar)))
251 (note "/linkage table ok"))
253 (sb-ext:quit :unix-status $EXIT_LISP_WIN) ; success convention for Lisp program
256 # Files are now set up; toggle errexit off, since we use a custom exit
257 # convention.
258 set +e
260 test_compile() {
261 run_sbcl <<EOF
262 (progn (load (compile-file "$TEST_FILESTEM.$1.lisp"))
263 (sb-ext:quit :unix-status $EXIT_LISP_WIN))
265 check_status_maybe_lose "compile $1" $?
268 test_compile fast
269 test_compile small
271 test_use() {
272 run_sbcl --load $TEST_FILESTEM.$1.fasl --load $TEST_FILESTEM.test.lisp
273 check_status_maybe_lose "use $1" $? 22 "(load-shared-object not supported)"
276 test_use small
277 test_use fast
279 test_save() {
280 echo testing save $1
281 run_sbcl --load $TEST_FILESTEM.$1.fasl <<EOF
282 #+linkage-table (save-lisp-and-die "$TEST_FILESTEM.$1.core")
283 #-linkage-table nil
284 (sb-ext:quit :unix-status 22) ; catch this
286 check_status_maybe_lose "save $1" $? \
287 0 "(successful save)" 22 "(linkage table not available)"
290 test_save small
291 test_save fast
293 test_start() {
294 echo testing start $1
295 run_sbcl_with_core $TEST_FILESTEM.$1.core \
296 --no-sysinit --no-userinit --load $TEST_FILESTEM.test.lisp
297 check_status_maybe_lose "start $1" $?
300 test_start fast
301 test_start small
303 # missing object file
304 rm $TEST_FILESTEM-b.so $TEST_FILESTEM-b2.so
305 run_sbcl_with_core $TEST_FILESTEM.fast.core --no-sysinit --no-userinit <<EOF
306 (assert (= 22 (summish 10 11)))
307 (multiple-value-bind (val err) (ignore-errors (eval 'foo))
308 (assert (not val))
309 (assert (typep err 'undefined-alien-error)))
310 (multiple-value-bind (val err) (ignore-errors (eval '(bar)))
311 (assert (not val))
312 (assert (typep err 'undefined-alien-error)))
313 (quit :unix-status $EXIT_LISP_WIN)
315 check_status_maybe_lose "missing-so" $?
317 # ADDR of a heap-allocated object
318 cat > $TEST_FILESTEM.addr.heap.c <<EOF
319 struct foo
321 int x, y;
322 } a, *b;
325 build_so $TEST_FILESTEM.addr.heap
327 run_sbcl <<EOF
328 (load-shared-object "$TEST_FILESTEM.addr.heap.so")
329 (define-alien-type foo (struct foo (x int) (y int)))
331 (define-alien-variable a foo)
332 (define-alien-variable b (* foo))
333 (funcall (compile nil '(lambda () (setq b (addr a)))))
334 (assert (sb-sys:sap= (alien-sap a) (alien-sap (deref b))))
335 (quit :unix-status $EXIT_LISP_WIN)
337 check_status_maybe_lose "ADDR of a heap-allocated object" $?
340 # success convention for script
341 exit $EXIT_TEST_WIN