README
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # $Id: README,v 1.2 2001/05/31 23:09:10 dda Exp $
  2. Use the scripts testall or testone to run all, or just one of the Java
  3. tests.  You must be in this directory to run them.  For example,
  4.         $ export LD_LIBRARY_PATH=/usr/local/Berkeley3.3/lib
  5. $ ./testone TestAppendRecno
  6. $ ./testall
  7. The scripts will use javac and java in your path.  Set environment
  8. variables $JAVAC and $JAVA to override this.  It will also and honor
  9. any $CLASSPATH that is already set, prepending ../../../../classes to
  10. it, which is where the test .class files are put, and where the DB
  11. .class files can normally be found after a build on Unix and Windows.
  12. If none of these variables are set, everything will probably work
  13. with whatever java/javac is in your path.
  14. To run successfully, you will probably need to set $LD_LIBRARY_PATH
  15. to be the directory containing libdb_java-X.Y.so
  16. As an alternative, use the --prefix=<DIR> option, a la configure
  17. to set the top of the BerkeleyDB install directory.  This forces
  18. the proper options to be added to $LD_LIBRARY_PATH.
  19. For example,
  20. $ ./testone --prefix=/usr/include/BerkeleyDB TestAppendRecno
  21. $ ./testall --prefix=/usr/include/BerkeleyDB
  22. The test framework is pretty simple.  Any <name>.java file in this
  23. directory that is not mentioned in the 'ignore' file represents a
  24. test.  If the test is not compiled successfully, the compiler output
  25. is left in <name>.compileout .  Otherwise, the java program is run in
  26. a clean subdirectory using as input <name>.testin, or if that doesn't
  27. exist, /dev/null.  Output and error from the test run are put into
  28. <name>.out, <name>.err .  If <name>.testout, <name>.testerr exist,
  29. they are used as reference files and any differences are reported.
  30. If either of the reference files does not exist, /dev/null is used.