dotfiles/sbcl/.quicklisp/dists/quicklisp/software/cffi_0.20.1/tests/test-static-link.sh
2020-02-18 14:21:14 -05:00

9 lines
329 B
Bash

#!/bin/sh -eux
for l in sbcl ; do # mkcl ecl clisp sbcl
EX="$(cl-launch -l $l -sp cffi-toolchain -ip "(output-file :static-program-op :cffi-tests/example)")"
rm -f $EX ; :
cl-launch -l $l -sp cffi-toolchain -i "(operate :static-program-op :cffi-tests/example)"
[ -f $EX ]
[ "$($EX)" = "hello, world!" ]
done