mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
more testing after enddef
This commit is contained in:
parent
2dda52efc9
commit
b9e16129c6
@ -241,6 +241,10 @@ main(int argc, char **argv)
|
||||
if (nc_inq_var_szip(ncid, varid, &options_mask_in, &pixels_per_block_in)) ERR;
|
||||
if (options_mask_in || pixels_per_block_in) ERR;
|
||||
|
||||
/* Storage is (still) contiguous. */
|
||||
if (nc_inq_var_chunking(ncid, varid, &storage_in, NULL)) ERR;
|
||||
if (storage_in != NC_CONTIGUOUS) ERR;
|
||||
|
||||
if (nc_close(ncid)) ERR;
|
||||
|
||||
/* Open the file and check data. */
|
||||
|
Loading…
Reference in New Issue
Block a user