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.
report_hpc_results in vendors/test – NEMO

source: vendors/test/report_hpc_results @ 10669

Last change on this file since 10669 was 10669, checked in by nicolasmartin, 5 years ago

Import latest FCM release from Github into the repository for testing

File size: 587 bytes
Line 
1#!/bin/ksh
2
3if [[ -f control/hpc_batch.stderr ]]; then
4  echo "##### Control run stderr ############################################"
5  cat control/hpc_batch.stderr
6  echo "##### Control run stdout ############################################"
7  cat control/hpc_batch.stdout | sed -ne '1,/^SUMMARY/p'
8fi
9if [[ -f test/hpc_batch.stderr ]]; then
10  echo "##### Test run stderr ###############################################"
11  cat test/hpc_batch.stderr
12  echo "##### Test run stdout ###############################################"
13  cat test/hpc_batch.stdout | sed -ne '1,/^SUMMARY/p'
14fi
Note: See TracBrowser for help on using the repository browser.