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 10747 for NEMO/branches/2019/fix_sette_ticket2239/sette.sh – NEMO

Ignore:
Timestamp:
2019-03-12T18:00:52+01:00 (5 years ago)
Author:
smueller
Message:

Addition of configurability of the set of active test configurations, see comment 14 of ticket #2239

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2019/fix_sette_ticket2239/sette.sh

    r10717 r10747  
    33SETTE_DIR=$(cd $(dirname "$0"); pwd) 
    44MAIN_DIR=$(dirname $SETTE_DIR) 
     5 
     6# Parse command-line arguments 
     7# 
     8#  -t "test configurations": select active test configurations 
     9#                            (overrides selection made using 
     10#                            environment variable SETTE_TEST_CONFIGS) 
     11while getopts t: option; do [ $option == "t" ] && export SETTE_TEST_CONFIGS=$OPTARG; done 
     12shift $((OPTIND - 1)) 
     13 
    514. ./param.cfg 
    615 
Note: See TracChangeset for help on using the changeset viewer.