Page History

Turn Off History

General

batch_test.pl is the means by which the test suite is run. It can be told to start up its own personal Condor and use that for testing. The tests ran by batch_test.pl may also start their own personal Condors.

  1. Build, install and configure your code:
    make install
    pushd release_dir
    mkdir man
    ./condor_install --make-personal-condor
    source condor.csh
    popd
    

  2. Make sure the tests are built:
    make tests
    

  3. Invoke batch_test.pl. We tell batch_test.pl to start up its own personal Condor and clean up everything when it is done. We don't ask it to run tests in parallel since there likely are race conditions in the tests over that behavior.
    cd src/condor_tests
    ./batch_test.pl -b -c
    
    If you just want one test, use:
    ./batch_test.pl -b -c -d . -t testname
    
    You can use multiple -t options to specify multiple tests. You can also instead use -f <filename> to specify a file containing a newline separated list of test names.

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 leading Condor 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.