From b9e16129c6574a453b0326a18b58c37bca2f8060 Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Wed, 15 Apr 2020 06:07:27 -0600 Subject: [PATCH] more testing after enddef --- nc_test/tst_formats.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nc_test/tst_formats.c b/nc_test/tst_formats.c index 380adc5e2..8c9c9343d 100644 --- a/nc_test/tst_formats.c +++ b/nc_test/tst_formats.c @@ -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. */