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 @ 10687

Last change on this file since 10687 was 10687, checked in by mathiot, 6 years ago

first commit on sette changes suggested in ticket2239

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