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 HTCondor 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 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
    LD_LIBRARY_PATH=$releasedirLoc/lib:$releasedirLoc/lib/condor:$LD_LIBRARY_PATH
    ./batch_test.pl -b -c --isolated  ( or a single test: ./batch_test.pl -d . -b -t cmd_q_shows-name)
    

  2. 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
    LD_LIBRARY_PATH=$releasedirLoc/lib:$releasedirLoc/lib/condor:$LD_LIBRARY_PATH
    ./batch_test.pl -b -c  ( or a single test: ./batch_test.pl -d . -b -c -t cmd_q_shows-name)
    

  3. 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 a single test

You can run a single test by specifying extra command line parameters. For example, to run cmd_q_shows-name:

 ./batch_test.pl -d . -b -t cmd_q_shows-name

This is useful if you see a specific test failing in one of the automated builds (http://submit-2.batlab.org/results/continuous.php).

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

Stress testing in batch_test.pl

Sometimes a test will run in build workspace but not in the batlab. The batlab runs multiple tests at once and thus responsiveness to individual tests is less predictable. One way to duplicate this is to run multiple tests at once within batch_test.pl.

batch_test.pl watches the list "list_quick" when you do not use "-t testname".

Assuming you can run multiple copies of the test which fails intermittenly at the same time, you can run as many as you want at once. Note however that some names might be used the same so the best best is to run another test as the load and one of the test you are working to fix. In this example I want to stress test job_dagman_fullremove for issues relating to runCondorTool getting the queries we want.

Fill list_quick with:

job_dagman_fullremovejob_basic_kill
job_basic_kill
job_basic_kill
job_basic_kill

The following command will start job_dagman_fullremove and then 3 job_basic_kill and they will all run at once.

./batch_test.pl -b -d . -e 4 (run four from list at a time)

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.