Page History
- 2015-Oct-02 14:17 johnkn
- 2015-Sep-30 14:32 johnkn
- 2015-Sep-29 17:43 johnkn
- 2015-Mar-30 13:13 bt
- 2014-Oct-16 13:43 adesmet
- 2014-Oct-08 17:42 adesmet
- 2014-Jul-24 10:57 bt
- 2014-Jul-24 10:54 bt
- 2014-May-09 14:43 gthain
- 2014-Mar-31 14:14 adesmet
- 2014-Mar-31 14:00 adesmet
- 2013-Nov-19 11:32 adesmet
- 2013-Nov-14 14:19 adesmet
- 2013-Oct-31 08:59 bt
- 2013-Sep-11 14:16 bt
- 2013-Sep-11 14:13 bt
- 2013-May-16 13:48 bbockelm
- 2013-Apr-15 11:44 bt
- 2013-Apr-15 11:26 bt
- 2013-Apr-15 10:18 bt
- 2013-Apr-15 10:17 bt
- 2013-Apr-15 10:12 bt
- 2012-Nov-13 16:48 adesmet
- 2012-Oct-16 15:28 nwp
- 2012-Sep-07 14:19 adesmet
- 2012-Sep-07 11:22 adesmet
- 2012-Sep-07 11:22 adesmet
- 2012-May-24 11:24 kronenfe
- 2012-May-24 11:07 kronenfe
- 2012-May-24 11:06 kronenfe
- 2012-May-24 11:06 kronenfe
- 2012-May-24 11:05 kronenfe
- 2011-Aug-11 15:33 adesmet
- 2011-Mar-17 15:30 adesmet
- 2011-Mar-17 14:16 adesmet
- 2011-Mar-17 14:03 adesmet
General
batch_test.pl is the means by which the test suite is run. It can be told to start up its own personal HTCondor and use that for testing. The tests ran by batch_test.pl may also start their own personal Condors.
- Build, install and configure your code from HTCondor source tar ball:
extract tar ball cd into source tree(eg condor-7.9.4) (You must have cmake) ./configure_uw make install make tests cd src cd condor_tests export PATH=$releasedirLoc/bin:$releasedirLoc/sbin:$PATH ./batch_test.pl -b -c ( or a single test: ./batch_test.pl -d . -b -t cmd_q_shows-name)
- Testing from the GIT repository, out of tree/out of repository:
make a directory to build and test in, cd there /{repo}/CONDOR_SRC/configure_uw /{repo}/GIT/CONDOR_SRC make install make tests cd src cp -r /{repo}/CONDOR_SRC/src/condor_examples . cp -r condor_tests condor_tests.built cp -r /{repo}/CONDOR_SRC/src/condor_tests . cd condor_tests export PATH=$releasedirLoc/bin:$releasedirLoc/sbin:$PATH ./batch_test.pl -b -c ( or a single test: ./batch_test.pl -d . -b -t cmd_q_shows-name)
- Results after batch_test.pl completes:
249 successful, 34 failed
Additionally the file failed_tests will contain the list of tests which had a non-zero return code meaning they failed. The file successful_tests will list the passing tests which had a return value of zero
Running the tests again
Running the test suite leaves files and directories in the src/condor_tests
directory that prevent the tests from running again. To solve this:
$ rm -fr TestingPersonalCondor
The test suite is prone to leaving HTCondor daemons, especially if you interrupt the tests. After running tests, check for unexpected condor_masters running and kill them.
Warnings, Problems, and Workarounds
See #1124 for tickets associated with improving tests.
- Parallel tests are unlikely to work. A number of tests depend on the output from other tests. Furthermore, some tests assume no competition and may reuse files or directories.
- Re-running tests is unlikely to work. Tests leave a lot of garbage behind that causes problems when they run again. Solution: x_makeclean.pl or "make resubmit" might clean things up enough. (#1153 is unfinished work designed to help with this.)