3 # tests related to foreign function interface and loading of shared
6 # This software is part of the SBCL system. See the README file for
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
13 # This software is in the public domain and is provided with
14 # absolutely no warranty. See the COPYING and CREDITS files for
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
24 testfilestem
=${TMPDIR:-/tmp}/sbcl-foreign-test-$$
26 ## Make a little shared object files to test with.
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)
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))))
93 (lambda (condition hook)
94 (print (list :debugger-hook condition))
95 (let ((cont (find-restart 'continue condition)))
97 (invoke-restart cont)))
99 (invoke-debugger condition)))
103 cat > $testfilestem.
test.lisp
<<EOF
104 (assert (= (summish 10 20) 31))
105 (assert (= 42 numberish))
107 (assert (= 13 numberish))
108 (assert (= 14 (nummish 1)))
110 (assert (= -1 (negative-short)))
111 (assert (= -2 (negative-int)))
112 (assert (= -3 (negative-long)))
116 ;; test realoading object file with new definitions
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")
123 (assert (= 13 (bar)))
124 (rename-file "$testfilestem-b.so" "$testfilestem-b2.so")
125 (rename-file "$testfilestem-b.bak" "$testfilestem-b.so")
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)
134 (assert (typep err 'undefined-alien-error)))
135 (multiple-value-bind (val err) (ignore-errors (late-bar))
137 (assert (typep err 'undefined-alien-error)))
138 (load-shared-object "$testfilestem-c.so")
139 (assert (= 43 late-foo))
140 (assert (= 14 (late-bar)))
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 :
150 # we can't compile the test file. something's wrong.
158 ${SBCL:-sbcl} --load $testfilestem.def.fasl
--load $testfilestem.
test.lisp
160 if [ $RET = 22 ]; then
162 exit $PUNT # success -- load-shared-object not supported
163 elif [ $RET != 52 ]; then
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
176 exit $PUNT # success -- linkage-table not available
181 $SBCL_ALLOWING_CORE --core $testfilestem.core
--sysinit /dev
/null
--userinit /dev
/null
--load $testfilestem.
test.lisp
182 if [ $?
!= 52 ]; then
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))
196 (assert (typep err 'undefined-alien-error)))
197 (multiple-value-bind (val err) (ignore-errors (eval '(bar)))
199 (assert (typep err 'undefined-alien-error)))
200 (quit :unix-status 52)
202 if [ $?
!= 52 ]; then
212 # success convention for script