blob: 33535258262e96e760fb1c17e2d9d131040f0dbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#!/bin/sh -
#
# $Id$
#
# Run the collections/bind test suite.
# NOTES:
# This test requires one JAR not included with the Berkeley DB
# distribution: JUnit (junit.jar) I've been using the 8/31/2002 version
# of JUnit. You can download this JAR from http://jakarta.apache.org/
#
# JUNIT_JAR=/Users/gburd/Unix/opt/junit/junit.jar
[ "x$JUNIT_JAR" = "x" ] && {
echo 'FAIL: unset environment variable JUNIT_JAR for junit.jar.'
exit 1
}
[ -f $JUNIT_JAR ] || {
echo 'FAIL: JUNIT_JAR not a valid path to the junit.jar.'
exit 1
}
case `uname` in
*CYGWIN*)
d=../../build_windows/Win32/Debug
DB_LIB_DIR="$d"
REQUIRED_JARS="`cygpath -m $JUNIT_JAR`"
CP_SEP=";"
PATH="../../build_windows/Win32/Debug:$PATH"
export PATH;;
*)
d=../../build_unix
REQUIRED_JARS=$JUNIT_JAR
DB_LIB_DIR="$d/.libs"
CP_SEP=":"
;;
esac
TESTDESTDIR=${TESTDESTDIR:-testdestdir}
DB_JAR="$d/db.jar"
export DB_JAR
export REQUIRED_JARS
export CP_SEP
# Build the tests.
make clean
[ -f ./dbtest.jar ] || (make dbtest.jar) || {
echo 'FAIL: unable to find or build dbtest.jar'
exit 1
}
# Perform initialization needed before StoredClassCatalogTest is run in
# the tests below. The testserial directory must be first in the classpath.
c="com.sleepycat.collections.test.serial.StoredClassCatalogTestInit"
echo "Running: $c"
if java -Djava.library.path=$DB_LIB_DIR -Dtestdestdir=$TESTDESTDIR \
-cp "testserial${CP_SEP}$REQUIRED_JARS${CP_SEP}$DB_JAR${CP_SEP}./dbtest.jar" $c ; then
:
else
echo "FAIL: test program failed"
exit 1
fi
# Run the tests.
for f in `find classes -name "*Test.class"`; do
c=`echo "$f" | sed -e 's/classes\///' -e 's/\.class//' -e 's/\//./g'`
echo "Running: $c"
if java -Djava.library.path=$DB_LIB_DIR -Dtestdestdir=$TESTDESTDIR\
-cp $REQUIRED_JARS${CP_SEP}$DB_JAR${CP_SEP}./dbtest.jar $c ; then
:
else
echo "FAIL: test program failed"
exit 1
fi
done
exit 0
|