mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
7e27052f87
The in-memory files can be made persistent if nc_create is called with NC_DISKLESS|NC_WRITE flags set. Initial test case also included. - Modified ncio mechanism to support multiple ncio packages; this is so we can have posixio and memio operating at the same time. - cleanup up a bunch of lint issues (unused variables, etc).
97 lines
2.2 KiB
Bash
Executable File
97 lines
2.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
#Constants
|
|
FILE1=tst_diskless.nc
|
|
FILE2=tst_diskless2.nc
|
|
|
|
echo ""
|
|
echo "Testing in-memory (diskless) files with and without persistence"
|
|
|
|
HASNC4=`../nc-config --has-nc4`
|
|
|
|
echo ""
|
|
echo "Test diskless netCDF classic file without persistence"
|
|
cmd="./tst_diskless";
|
|
echo "cmd=$cmd"
|
|
$cmd
|
|
echo "*** PASS: diskless netCDF classic file without persistence"
|
|
|
|
if test "x$HASNC4" = "xyes" ; then
|
|
echo ""
|
|
echo "Test diskless netCDF enhanced file without persistence"
|
|
cmd="./tst_diskless netcdf4";
|
|
echo "cmd=$cmd"
|
|
$cmd
|
|
echo "*** PASS: diskless netCDF enhanced file without persistence"
|
|
fi #HASNC4
|
|
|
|
echo ""
|
|
echo "Test diskless netCDF classic file with persistence"
|
|
cmd="./tst_diskless persist";
|
|
echo "cmd=$cmd"
|
|
rm -f $FILE1
|
|
$cmd
|
|
if test -f $FILE1 ; then
|
|
echo "$FILE1 created"
|
|
../ncdump/ncdump $FILE1
|
|
echo "***PASS: diskless netCDF classic file with persistence"
|
|
else
|
|
echo "$FILE1 not created"
|
|
echo "***FAIL: diskless netCDF classic file with persistence"
|
|
fi
|
|
|
|
if test "x$HASNC4" = "xyes" ; then
|
|
echo ""
|
|
echo "Test diskless netCDF enhanced file with persistence"
|
|
cmd="./tst_diskless netcdf4 persist";
|
|
echo "cmd=$cmd"
|
|
rm -f $FILE1
|
|
$cmd
|
|
if test -f $FILE1 ; then
|
|
echo "$FILE1 created"
|
|
../ncdump/ncdump $FILE1
|
|
echo "***PASS: diskless netCDF enhanced file with persistence"
|
|
else
|
|
echo "$FILE1 not created"
|
|
echo "***FAIL: diskless netCDF enhanced file with persistence"
|
|
fi
|
|
|
|
fi #HASNC4
|
|
|
|
# Do extended netcdf enhanced test
|
|
if test "x$HASNC4" = "xyes" ; then
|
|
|
|
ok=""
|
|
echo ""
|
|
echo "Test extended enhanced diskless netCDF with persistence"
|
|
cmd="./tst_diskless2"
|
|
echo "cmd=$cmd"
|
|
rm -f $FILE2 tst_diskless2.cdl
|
|
$cmd
|
|
if test -f $FILE2 ; then
|
|
echo "$FILE2 created"
|
|
# Do a cyle test
|
|
if ../ncdump/ncdump $FILE2 |sed -e s/tst_diskless2/tmp1/ > tmp1.cdl ; then
|
|
if ../ncgen/ncgen -k3 -o tmp1.nc tmp1.cdl ;then
|
|
if ../ncdump/ncdump tmp1.nc >tmp2.cdl ; then
|
|
if diff -wb tmp1.cdl tmp2.cdl ; then
|
|
ok=yes
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
else
|
|
echo "$FILE2 not created"
|
|
fi
|
|
rm -f tmp1.cdl tmp2.cdl tmp1.nc tmp2.nc
|
|
|
|
if test "x$ok" = xyes ; then
|
|
echo "***PASS: extended enhanced diskless netCDF with persistence"
|
|
else
|
|
echo "***FAIL: extended enhanced diskless netCDF with persistence"
|
|
fi
|
|
|
|
fi #HASNC4
|