Index handling. Automatic addition and removal of indices not yet implemented.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2007 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2006-12-21 20:53:55 +00:00
parent 25ecb66363
commit afd3d35f17
7 changed files with 110 additions and 115 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/bin/sh
#
# Runs test code
ROOT=`dirname $0`
ROOT=`cd $ROOT/.. ; pwd`
JAVA_VM="$JAVA_HOME/bin/java"
if [ ! -e $JAVA_VM ]; then
echo "$0: Cannot find JVM in $JAVA_HOME. Exiting."
exit 255
fi
CLASSPATH="$JAVA_HOME/jre/lib/rt.jar"
for JAR in $ROOT/dist/lib/*.jar; do
CLASSPATH=$CLASSPATH:$JAR
done
CLASSPATH=$ROOT/tests/dist/classes:$ROOT/dist/classes:$ROOT/tests:$CLASSPATH
export CLASSPATH
eval $JAVA_VM $JAVA_ARGS "$@"