chk.bdb

来自「linux 下的源代码分析阅读器 red hat公司新版」· BDB 代码 · 共 77 行

BDB
77
字号
#!/bin/sh -## $Id: chk.bdb,v 1.2 2007/05/17 18:17:21 bostic Exp $## Run the DB Java API test suite.# Alternatively supply the class name for an individual test# case and have that run.# 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*)  CP_SEP=";"  d="../../build_windows/Debug"  DB_LIB_DIR="$d"  PATH="../../build_windows/Debug:$PATH"  export PATH;;*)  CP_SEP=":"  d="../../build_unix/"  DB_LIB_DIR="$d/.libs"esacREQUIRED_JARS=$JUNIT_JARDB_JAR=$d/db.jarexport DB_JARexport REQUIRED_JARSexport CP_SEPexport DB_LIB_DIR# Build the tests.make clean[ -f ./dbtest.jar ] || (make dbtest.jar) || {	echo 'FAIL: unable to find or build dbtest.jar'	exit 1}# Run the tests.if [ -n "$1" ]then    echo "Running: $1"    java -Xcheck:jni -Djava.library.path=$DB_LIB_DIR -cp "$REQUIRED_JARS$CP_SEP$DB_JAR$CP_SEP./dbtest.jar" org.junit.runner.JUnitCore $1else    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 -Xcheck:jni -Djava.library.path=$DB_LIB_DIR -cp "$REQUIRED_JARS$CP_SEP$DB_JAR$CP_SEP./dbtest.jar" org.junit.runner.JUnitCore $c ; then                :        else            echo "FAIL: test program failed"    #        exit 1        fi    donefiexit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?