Skip to content

Testing

Tommy McMichen edited this page May 26, 2022 · 1 revision

Testing NOELLE

To run all tests in parallel using Condor, invoke the following commands:

make clean ; 
cd tests ;
make condor ;

To monitor how tests are doing: cd tests ; make condor_watch

To find out if all tests passed: cd tests ; make condor_check

To test NOELLE using condor to run all tests in parallel, go to tests and run make condor. This creates one regression_X sub-directory per configuration where X is going to be a number (e.g., regression_42). Each single test within a given regression_X sub-directory will contain a run_me.sh script, which is automatically generated by make condor. To re-produce the compilation for a specific test for a specific configuration (e.g., the one associated with the current regression_X sub-directory), then do the following:

cd tests/regression_42 ;
cd THE_TEST_YOU_ARE_INTERESTED ;
./run_me.sh ;

where regression_42 is the sub-directory of the configuration you are interested and THE_TEST_YOU_ARE_INTERESTED is the test you care.

Clone this wiki locally