mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-12 15:45:21 +08:00
eb3d9eb0c9
Primary changes: * Add an improved cache system to speed up performance. * Fix NCZarr to properly handle scalar variables. Misc. Related Changes: * Added unit tests for extendible hash and for the generic cache. * Add config parameter to set size of the NCZarr cache. * Add initial performance tests but leave them unused. * Add CRC64 support. * Move location of ncdumpchunks utility from /ncgen to /ncdump. * Refactor auth support. Misc. Unrelated Changes: * More cleanup of the S3 support * Add support for S3 authentication in .rc files: HTTP.S3.ACCESSID and HTTP.S3.SECRETKEY. * Remove the hashkey from the struct OBJHDR since it is never used.
28 lines
868 B
Makefile
28 lines
868 B
Makefile
## This is a automake file, part of Unidata's netCDF package.
|
|
# Copyright 2019, see the COPYRIGHT file for more information.
|
|
|
|
# This file builds and runs the unit tests. These tests are not run in
|
|
# the CMake build, because we would then have to extern these internal
|
|
# functions, to allow Windows to work. Since we have not extern'd
|
|
# these functions, they will only be run under the autotools build.
|
|
|
|
# Ed Hartnett 8/9/19
|
|
|
|
# Put together AM_CPPFLAGS and AM_LDFLAGS.
|
|
include $(top_srcdir)/lib_flags.am
|
|
|
|
# Find and link to the netcdf-c library.
|
|
LDADD = ${top_builddir}/liblib/libnetcdf.la
|
|
|
|
if USE_NETCDF4
|
|
NC4_TESTS = tst_nc4internal
|
|
endif # USE_NETCDF4
|
|
|
|
check_PROGRAMS = tst_nclist test_ncuri test_pathcvt tst_exhash tst_xcache $(NC4_TESTS)
|
|
TESTS = ${check_PROGRAMS}
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|
|
|
|
# If valgrind is present, add valgrind targets.
|
|
@VALGRIND_CHECK_RULES@
|