I'd like to add a test in test-bundle.script.
I tried this:
(operate 'dll-op :test-asdf/bundle-2)
(si:load-foreign-module (first (output-files 'dll-op :test-asdf/bundle-2)))
(ffi:def-function "init_dll_BUNDLE_2" () :returning :void)
(init-dll-BUNDLE-2)
But the function call fails, because it the test script is
interpreted, not compiled.
How do I call the initialization function from the interpreter?