This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/jpl/test-java.sh

27 lines
497 B
Bash
Executable File

#!/bin/sh
# set variables for Prolog
. ../swipl.sh < /dev/null
if [ ! -z "$LD_LIBRARY_PATH" ]; then
LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
fi
if [ ! -z "$LD_PRELOAD" ]; then
export LD_PRELOAD="$JAVA_PRELOAD $LD_PRELOAD"
else
export LD_PRELOAD="$JAVA_PRELOAD"
fi
if [ -z "$JUNIT" -a -r /usr/share/java/junit.jar ]; then
JUNIT=/usr/share/java/junit.jar
fi
if [ -z "$JAVA" ]; then
JAVA=java
fi
export CLASSPATH=$JUNIT:jpl.jar:jpltest.jar
$JAVA junit.textui.TestRunner jpl.test.TestJUnit