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/fcm/current/test – NEMO

source: vendors/fcm/current/test/report_hpc_results @ 1980

Last change on this file since 1980 was 1980, checked in by flavoni, 14 years ago

importing fcm vendor

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.