2
0
mirror of https://github.com/Unidata/netcdf-c.git synced 2025-03-31 17:50:26 +08:00

Provide better cleanup of tst_iter.sh

This commit is contained in:
Dennis Heimbigner 2012-03-08 18:13:08 +00:00
parent 2349c62d18
commit f14cdec948
3 changed files with 25 additions and 18 deletions

@ -3,6 +3,13 @@ Entries are in reverse chronological order (most recent first).
VERSION COMMENTS
------- --------
4.2 Released 2012-??-??
Fixed bug in ncgen in which large variables
(more than 2**18 elements) duplicates the first
2**18 values into subsequent chunks of data.
[NCF-154]
4.2-rc2 Released 2012-03-02
Fixed nccopy bug copying a netCDF-4 file with a

@ -70,7 +70,7 @@ tst_special_atts.cdl tst_nans.cdl tst_format_att_64.cdl \
tst_vlen_data.cdl tst_solar_1.cdl tst_format_att.cdl tst_inflated.nc \
tmp_subset.cdl tst_inflated4.nc tst_deflated.nc tst_chunking.nc tmp*.nc \
tst_charfill.nc tmp_tst_charfill.cdl \
tst_iter.nc ref_tst_iter.cdl tst_iter.cdl \
iter.* \
tst_nc_test_netcdf4_4_0.cdl
# These files all have to be included with the distribution.

@ -1,6 +1,6 @@
#!/bin/sh
# This shell script runs an ncdump bug test for netcdf
# Test if the nciter code is working.
# Test if the nciter code is working [NCF-154]
set -e
@ -8,13 +8,13 @@ echo "*** Running ncdump nc_iter test."
if test "x$CC" = "x" ; then CC="gcc"; fi
CLEANUP="geniter.c ref_tst_iter.cdl a.out tst_iter.nc tst_iter.cdl tmp"
CLEANUP="iter.*"
rm -f $CLEANUP
echo "create ref_tst_iter.cdl"
cat > ref_tst_iter.cdl <<EOF
netcdf tst_iter {
echo "create iter.cdl"
cat > iter.cdl <<EOF
netcdf iter {
dimensions:
x = 5 ;
y = 256 ;
@ -24,7 +24,7 @@ int var(x,y,z) ;
data:
var =
EOF
cat >./geniter.c <<EOF
cat >./iter.c <<EOF
#include <stdlib.h>
#include <stdio.h>
#define N (5*256*256)
@ -36,19 +36,19 @@ int main() {
}
EOF
$CC ./geniter.c
./a.out >>ref_tst_iter.cdl
$CC ./iter.c -o iter.exe
./iter.exe >>iter.cdl
echo "*** create tst_iter.nc "
../ncgen/ncgen -k1 -o tst_iter.nc ./ref_tst_iter.cdl
echo "*** dumping tst_iter.nc to tst_iter.cdl..."
./ncdump tst_iter.nc > tst_iter.cdl
echo "*** reformat tst_iter.cdl"
mv tst_iter.cdl tmp
sed -e 's/\([0-9][,]\) /\1@/g' <tmp |tr '@' '\n' |sed -e '/^$/d' >./tst_iter.cdl
echo "*** create iter.nc "
../ncgen/ncgen -k1 -o iter.nc ./iter.cdl
echo "*** dumping iter.nc to iter.dmp"
./ncdump iter.nc > iter.dmp
echo "*** reformat iter.dmp"
mv iter.dmp iter.tmp
sed -e 's/\([0-9][,]\) /\1@/g' <iter.tmp |tr '@' '\n' |sed -e '/^$/d' >./iter.dmp
echo "*** comparing tst_iter.cdl with ref_tst_iter.cdl..."
diff -w tst_iter.cdl ./ref_tst_iter.cdl
echo "*** comparing iter.dmp with iter.cdl..."
diff -w ./iter.dmp ./iter.cdl
# cleanup
rm -f $CLEANUP