forked from ufs-community/UFS_UTILS
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature/reg_tests This commit references ufs-community#99.
Add ice blend reg test driver script for Dell.
- Loading branch information
1 parent
c774ada
commit bce2d0e
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#!/bin/bash | ||
|
||
#----------------------------------------------------------------------------- | ||
# | ||
# Run ice_blend regression test on WCOSS-Dell. | ||
# | ||
# Set $DATA to your working directory. Set the project code (BSUB -P) | ||
# and queue (BSUB -q) as appropriate. | ||
# | ||
# Invoke the script as follows: cat $script | bsub | ||
# | ||
# Log output is placed in regression.log. A summary is | ||
# placed in summary.log | ||
# | ||
# The test fails when its output does not match the baseline files | ||
# as determined by the 'cmp' command. The baseline files are | ||
# stored in HOMEreg. | ||
# | ||
#----------------------------------------------------------------------------- | ||
|
||
#BSUB -W 0:02 | ||
#BSUB -o regression.log | ||
#BSUB -e regression.log | ||
#BSUB -J iceb_regt | ||
#BSUB -q debug | ||
#BSUB -R "affinity[core(1)]" | ||
#BSUB -P GFS-DEV | ||
|
||
set -x | ||
|
||
export DATA=/gpfs/dell1/stmp/$LOGNAME/reg_tests.ice_blend | ||
|
||
#----------------------------------------------------------------------------- | ||
# Should not have to change anything below. | ||
#----------------------------------------------------------------------------- | ||
|
||
export WGRIB="/gpfs/dell1/nco/ops/nwprod/grib_util.v1.1.1/exec/wgrib" | ||
export WGRIB2="/gpfs/dell1/nco/ops/nwprod/grib_util.v1.1.1/exec/wgrib2" | ||
export COPYGB2="/gpfs/dell1/nco/ops/nwprod/grib_util.v1.1.1/exec/copygb2" | ||
export COPYGB="/gpfs/dell1/nco/ops/nwprod/grib_util.v1.1.1/exec/copygb" | ||
export CNVGRIB="/gpfs/dell1/nco/ops/nwprod/grib_util.v1.1.1/exec/cnvgrib" | ||
|
||
export HOMEreg=/gpfs/dell2/emc/modeling/noscrub/George.Gayno/ufs_utils.git/reg_tests/ice_blend | ||
export HOMEgfs=$PWD/../.. | ||
|
||
rm -fr $DATA | ||
|
||
./ice_blend.sh | ||
|
||
exit 0 |