Skip to content
Snippets Groups Projects
Commit 6d22d653 authored by Simon Mueller's avatar Simon Mueller Committed by Andrew Coward
Browse files

Resolve "Generic configuration coverage in SETTE test reports" (2)

parent 77f25f31
No related branches found
No related tags found
No related merge requests found
...@@ -253,11 +253,11 @@ if [ ! -d $NEMO_VALIDATION_DIR/$SETTE_SUB_VAL ] && [ ${dry_run} -eq 0 ] ; then ...@@ -253,11 +253,11 @@ if [ ! -d $NEMO_VALIDATION_DIR/$SETTE_SUB_VAL ] && [ ${dry_run} -eq 0 ] ; then
fi fi
export NEMO_VALIDATION_DIR=$NEMO_VALIDATION_DIR/$SETTE_SUB_VAL export NEMO_VALIDATION_DIR=$NEMO_VALIDATION_DIR/$SETTE_SUB_VAL
TEST_CONFIGS="${TEST_CONFIGS/ORCA2_SAS_ICE/SAS}" # Shortening of 'ORCA2_SAS_ICE' to 'SAS' TEST_CONFIGS=(${TEST_CONFIGS[@]/ORCA2_SAS_ICE/SAS}) # Shortening of 'ORCA2_SAS_ICE' to 'SAS'
TEST_CONFIGS="${TEST_CONFIGS/AGRIF_DEMO/AGRIF}" # Shortening of 'AGRIF_DEMO' to 'AGRIF' TEST_CONFIGS=(${TEST_CONFIGS[@]/AGRIF_DEMO/AGRIF}) # Shortening of 'AGRIF_DEMO' to 'AGRIF'
if [ ${#SETTE_TEST_CONFIGS[@]} -eq 0 ]; then if [ ${#SETTE_TEST_CONFIGS[@]} -eq 0 ]; then
echo "==================================" echo "=================================="
echo "Configurations $TEST_CONFIGS will be tested if they are available" echo "Configurations ${TEST_CONFIGS[@]} will be tested if they are available"
fi fi
echo "Carrying out the following tests : ${TEST_TYPES[@]}" echo "Carrying out the following tests : ${TEST_TYPES[@]}"
echo "requested by the command : "$cmd $cmdargs echo "requested by the command : "$cmd $cmdargs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment