Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

The --jobname, --daos_dir, and --res_dir options to run_testlist.py can also be edited in the script itself instead of specifying on the command line.

...

RF0 and EC Tests

There are currently 48 variants in this group.RF0, 42 EC IOR variants, and 42 EC MDTest variants

Code Block
languagebash
./run_testlist.py --jobname "daos-xxxx" \
                  --daos_dir "${WORK}/BUILDS/v2.2.0-rc1/latest/daos" \
                  --res_dir "${WORK}/RESULTS/v2.2.0-rc1" \
                  -r --serial \
                  tests/basic

EC Tests

Use showq -u to get the SLURM_JOB_ID of the last job in the queue, if any.

There are currently 42 EC IOR variants and 42 EC MDTest variants.

Info

There are also rf0 variants, but those are not usually ran. The --filter option runs only the EC variants.

Code Block
languagebash
./run_testlist.py --jobname "daos-xxxx" \
                  --daos_dir "${WORK}/BUILDS/v2.2.0-rc1/latest/daos" \
                  --res_dir "${WORK}/RESULTS/v2.2.0-rc1" \
                  -r --serial \
                  --slurm_dep_afterany <LAST_SLURM_JOB_ID> \
                  --filter "oclass=EC_16P2G1 oclass=EC_16P2GX oclass=EC_8P2G1 oclass=EC_8P2GX oclass=EC_4P2G1 oclass=EC_4P2GX oclass=EC_2P1G1 oclass=EC_2P1GX" \
                  tests/ec_vs_rf0_complex

Rebuild Tests

...