⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chk.bdb

📁 linux 下的源代码分析阅读器 red hat公司新版
💻 BDB
字号:
#!/bin/sh -## $Id: chk.bdb,v 12.1 2006/09/12 00:37:26 alexg Exp $## 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}d=..REQUIRED_JARS=$JUNIT_JARDB_JAR=$d/db.jarDB_LIB_DIR=$d/.libsexport DB_JARexport REQUIRED_JARS# 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 \    -cp testserial:$REQUIRED_JARS:$DB_JAR:./dbtest.jar $c ; then        :else    echo "FAIL: test program failed"    exit 1fi# 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 \	    -cp $REQUIRED_JARS:$DB_JAR:./dbtest.jar $c ; then            :    else        echo "FAIL: test program failed"        exit 1    fidoneexit 0

⌨️ 快捷键说明

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