New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 14873 for utils/CI/sette_ticket2673/param.cfg – NEMO

Ignore:
Timestamp:
2021-05-17T16:19:02+02:00 (3 years ago)
Author:
acc
Message:

Branch: sette_ticket2673. Improved functionality: added -r (no report) option to disable running sette_rpt.sh at the end of sette.sh (allows chaining of sette.sh invocations with different arguments). Allowed SAS and AGRIF to be equivalently requested as ORCA2_SAS_ICE or AGRIF_DEMO (saves having to remember which are abbreviated). Sorted out the logic so that RESTART is no longer a mandatory test (allows REPRO without RESTART but, also, importantly, allows COMPILE as a test which will compile but not attempt to run - should mean fewer excuses for not running SETTE)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • utils/CI/sette_ticket2673/param.cfg

    r14867 r14873  
    6767# 
    6868# TYPES OF TESTS TO PERFORM 
    69 export DO_RESTART=1    # The restart test is always needed because this compiles the code 
     69# Note an attempt will be made to compile each configuration even if none of these tests are activated 
     70export DO_RESTART=0   
    7071export DO_REPRO=0 
    7172export DO_CORRUPT=0 
    7273export DO_PHYOPTS=0 
    7374TEST_TYPES=(${SETTE_TEST_TYPES[@]:-"RESTART REPRO PHYOPTS CORRUPT"}) 
    74 if [[ ! ${TEST_TYPES[*]} =~ .*RESTART.* ]]; then export TEST_TYPES=("RESTART" ${TEST_TYPES[@]}) ;fi 
     75if [[ ${TEST_TYPES[*]} =~ .*RESTART.* ]]; then export DO_RESTART=1 ;fi 
    7576if [[ ${TEST_TYPES[*]} =~ .*REPRO.* ]]; then export DO_REPRO=1 ;fi 
    7677if [[ ${TEST_TYPES[*]} =~ .*CORRUPT.* ]]; then export DO_CORRUPT=1 ;fi 
Note: See TracChangeset for help on using the changeset viewer.