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

source: NEMO/branches/2019/fix_sette_ticket2239/sette.sh @ 10690

Last change on this file since 10690 was 10690, checked in by mathiot, 5 years ago

fix typo and improve sette.sh standart output

  • Property svn:executable set to *
File size: 719 bytes
Line 
1#!/bin/sh
2
3# run sette on reference configuration
4./sette_cfg-ref.sh
5if [[ $? != 0 ]]; then
6   echo ""
7   echo "--------------------------------------------------------------"
8   echo "./sette_cfg-ref.sh didn't finish properly, need investigations"
9   echo "--------------------------------------------------------------"
10   echo ""
11   exit 42
12fi
13
14# run sette on test cases
15./sette_test-cases.sh
16if [[ $? != 0 ]]; then
17   echo ""
18   echo "-----------------------------------------------------------------"
19   echo "./sette_test-cases.sh didn't finish properly, need investigations"
20   echo "-----------------------------------------------------------------"
21   echo ""
22   exit 42
23fi
24
25# run sette report
26./sette_rpt.sh
27
Note: See TracBrowser for help on using the repository browser.