netcdf-c/nctest
Dennis Heimbigner 25f062528b This completes (for now) the refactoring of libsrc4.
The file docs/indexing.dox tries to provide design
information for the refactoring.

The primary change is to replace all walking of linked
lists with the use of the NCindex data structure.
Ncindex is a combination of a hash table (for name-based
lookup) and a vector (for walking the elements in the index).
Additionally, global vectors are added to NC_HDF5_FILE_INFO_T
to support direct mapping of an e.g. dimid to the NC_DIM_INFO_T
object. These global vectors exist for dimensions, types, and groups
because they have globally unique id numbers.

WARNING:
1. since libsrc4 and libsrchdf4 share code, there are also
   changes in libsrchdf4.
2. Any outstanding pull requests that change libsrc4 or libhdf4
   are likely to cause conflicts with this code.
3. The original reason for doing this was for performance improvements,
   but as noted elsewhere, this may not be significant because
   the meta-data read performance apparently is being dominated
   by the hdf5 library because we do bulk meta-data reading rather
   than lazy reading.
2018-03-16 11:46:18 -06:00
..
add.c moving to trunk subdir 2010-06-03 13:24:43 +00:00
add.h moving to trunk subdir 2010-06-03 13:24:43 +00:00
atttests.c This completes (for now) the refactoring of libsrc4. 2018-03-16 11:46:18 -06:00
cdftests.c 2012-10-09 19:54:36 +00:00
CMakeLists.txt Adding more test dependencies for cmake. 2017-12-01 14:16:21 -07:00
compare_test_files.sh Primary change: add dap4 support 2017-03-08 17:01:10 -07:00
depend moving to trunk subdir 2010-06-03 13:24:43 +00:00
dimtests.c many changes for memory fixes 2010-11-29 22:23:16 +00:00
driver.c This completes (for now) the refactoring of libsrc4. 2018-03-16 11:46:18 -06:00
emalloc.c moving to trunk subdir 2010-06-03 13:24:43 +00:00
emalloc.h moving to trunk subdir 2010-06-03 13:24:43 +00:00
error.c 2012-10-09 19:54:36 +00:00
error.h moving to trunk subdir 2010-06-03 13:24:43 +00:00
Makefile.am removed valgrind stuff 2018-02-27 08:36:12 -07:00
misctest.c moving to trunk subdir 2010-06-03 13:24:43 +00:00
README moving to trunk subdir 2010-06-03 13:24:43 +00:00
rec.c moving to trunk subdir 2010-06-03 13:24:43 +00:00
ref_nctest_64bit_offset.nc 1. There were several bugs in ncdump/dumplib.c 2015-11-06 17:03:28 -07:00
ref_nctest_classic.nc 1. There were several bugs in ncdump/dumplib.c 2015-11-06 17:03:28 -07:00
slabs.c many changes for memory fixes 2010-11-29 22:23:16 +00:00
testcdf.h moving to trunk subdir 2010-06-03 13:24:43 +00:00
tests.h This completes (for now) the refactoring of libsrc4. 2018-03-16 11:46:18 -06:00
timesum.awk moving to trunk subdir 2010-06-03 13:24:43 +00:00
tst_rename.c Refactoring tests to separate out error macros from tests, in support of fixing http://github.com/Unidata/netcdf-c/issues/321 2016-10-21 17:17:39 +00:00
val.c moving to trunk subdir 2010-06-03 13:24:43 +00:00
val.h moving to trunk subdir 2010-06-03 13:24:43 +00:00
vardef.c Fix non-portable test that depends on nonstandardized floating-point format using e+08, not e+008. Fixes for some problems reported in scan-build static analysis. 2012-04-23 23:59:24 +00:00
varget.c moving to trunk subdir 2010-06-03 13:24:43 +00:00
vargetg.c moving to trunk subdir 2010-06-03 13:24:43 +00:00
varput.c moving to trunk subdir 2010-06-03 13:24:43 +00:00
varputg.c merge-squash 2015-08-15 16:26:35 -06:00
vartests.c merge-squash 2015-08-15 16:26:35 -06:00
vputget.c The issue (at least this one) in nctest is solved. In dv2i.c, line 896 (or thereabouts), a long variable was being passed to a function expecting a ptrdiff_t. These are not compatible sizes, on Windows. 2015-10-27 12:04:03 -06:00
vputgetg.c The issue (at least this one) in nctest is solved. In dv2i.c, line 896 (or thereabouts), a long variable was being passed to a function expecting a ptrdiff_t. These are not compatible sizes, on Windows. 2015-10-27 12:04:03 -06:00

This directory contains source code for nctest, an extensive test
program for the entire netCDF library.  Before compiling the sources in
this directory, you must have already made the netCDF library from the
../src directory.

For UNIX, just type "make".  Then, when "nctest" is successfully made,
invoke it with "nctest".

For VMS, type "@make".  The make.com, make.opt, and *-vms files are for
VMS only.  When nctest.exe is successfully made, invoke it with "run
nctest".

Output from the test program should look like the following:
--- Testing nccreate ...
--- Testing ncopen ...
--- Testing ncredef ...
--- Testing ncendef ...
--- Testing ncclose ...
--- Testing ncinquire ...
--- Testing ncsync ...
--- Testing ncabort ...
--- Testing ncdimdef ...
--- Testing ncdimid ...
--- Testing ncdiminq ...
--- Testing ncdimrename ...
--- Testing ncvardef ...
--- Testing ncvarid ...
--- Testing ncvarinq ...
--- Testing ncvarput1 ...
--- Testing ncvarget1 ...
--- Testing ncvarput ...
--- Testing ncvarget ...
--- Testing ncvarrename ...
--- Testing ncattput ...
--- Testing ncattinq ...
--- Testing ncattget ...
--- Testing ncattcopy ...
--- Testing ncattname ...
--- Testing ncattrename ...
--- Testing ncattdel ...
--- Testing nctypelen ...
except that on VMS systems, the line "Doesn't support shared access on
vms" will appear a couple of times after the "ncopen" and "ncsync"
tests.