ttest_27.sh - pism - [fork] customized build of PISM, the parallel ice sheet model (tillflux branch)
(HTM) git clone git://src.adamsgaard.dk/pism
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
ttest_27.sh (369B)
---
1 #!/bin/bash
2
3 PISM_PATH=$1
4 MPIEXEC=$2
5
6 # Test name:
7 echo "Test #27: testing whether runtime viewers break or not."
8 # The list of files to delete when done.
9 files="simp_exper-27.nc"
10
11 rm -f $files
12
13 set -e -x
14
15 $PISM_PATH/pisms -eisII A -y 1000 -view velsurf,thk -Mbz 11 -Lbz 1000 -o_size small -o simp_exper-27.nc
16
17 if [ $? != 0 ];
18 then
19 exit 1
20 fi
21
22 rm -f $files; exit 0
23