openbsd-ports/java/jna/files/test.sh
2022-03-11 19:25:15 +00:00

13 lines
312 B
Bash

#!/bin/sh
# Simple JNA tests to ensure Clojure can still call native library functions
expected=`mktemp`
results=`mktemp`
echo "Hello, World\n-> 42\nint: 42\nfloat: 42.00\n# ignore statvfs" > $expected
/usr/local/bin/clojure files/jna.clj > $results
cmp $expected $results || exit 1
rm -f $expected $results