File: run_bm_test2.sh

package info (click to toggle)
netcdf 1%3A4.4.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 96,828 kB
  • ctags: 15,369
  • sloc: ansic: 163,650; sh: 9,294; yacc: 2,457; makefile: 1,208; lex: 1,161; xml: 173; f90: 7; fortran: 6; awk: 2
file content (38 lines) | stat: -rwxr-xr-x 1,553 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/sh

# This shell tests non-sequential reads for bm_file.c

# $Id: run_bm_test2.sh,v 1.3 2007/12/27 03:43:13 ed Exp $

set -e
echo ""

echo "*** Testing the benchmarking program bm_file using start/count/inc..."
./bm_file -h -f 3 -o tst_simple_3.nc -c 0:-1:0:10  -t 0:0 -u 0:1 -r 0:1 tst_simple.nc
../ncdump/ncdump tst_simple.nc > tst_simple.cdl
../ncdump/ncdump -n tst_simple tst_simple_3.nc > tst_simple_3.cdl
diff tst_simple.cdl tst_simple_3.cdl
echo '*** SUCCESS!!!'

echo "*** Testing the benchmarking program bm_file using start/count/inc with negative increment..."
./bm_file -h -f 3 -o tst_simple_3.nc -c 0:-1:0:10  -t 0:9 -u 0:1 -r 0:-1 tst_simple.nc
../ncdump/ncdump tst_simple.nc > tst_simple.cdl
../ncdump/ncdump -n tst_simple tst_simple_3.nc > tst_simple_3.cdl
diff tst_simple.cdl tst_simple_3.cdl
echo '*** SUCCESS!!!'

echo "*** Testing the benchmarking program bm_file using start/count/inc with count > 1..."
./bm_file -h -f 3 -o tst_simple_3.nc -c 0:-1:0:10  -t 0:0 -u 0:2 -r 0:2 tst_simple.nc
../ncdump/ncdump tst_simple.nc > tst_simple.cdl
../ncdump/ncdump -n tst_simple tst_simple_3.nc > tst_simple_3.cdl
diff tst_simple.cdl tst_simple_3.cdl
echo '*** SUCCESS!!!'

echo "*** Testing the benchmarking program bm_file using start/count/inc with uneven count..."
./bm_file -h -f 3 -o tst_simple_3.nc -c 0:-1:0:10  -t 0:0 -u 0:4 -r 0:4 tst_simple.nc
../ncdump/ncdump tst_simple.nc > tst_simple.cdl
../ncdump/ncdump -n tst_simple tst_simple_3.nc > tst_simple_3.cdl
diff tst_simple.cdl tst_simple_3.cdl
echo '*** SUCCESS!!!'

exit 0