ffi-buf-check.scm 413 B

123456789101112131415
  1. ; Part of Scheme 48 1.9. See file COPYING for notices and license.
  2. ; Authors: Harald Glab-Plhak
  3. ;; test for the new ffi
  4. (define-test-suite ffi-buf-tests)
  5. (define-test-case ffi-local-bufs ffi-buf-tests
  6. (check (external-ffi-make-local-buf))
  7. (check (external-ffi-free-local-buf))
  8. (check (external-ffi-free-local-buf-1))
  9. (check (external-ffi-free-local-buf-2))
  10. (check (external-ffi-free-local-buf-3)))