made examples quick_large_files and quick_small_files only run for large file builds

This commit is contained in:
Ed Hartnett 2019-07-02 09:14:50 -06:00
parent 137e507574
commit 082ec55f43

View File

@ -17,11 +17,15 @@ AM_LDFLAGS = ${top_builddir}/liblib/libnetcdf.la
# These are the netCDF-3 examples.
check_PROGRAMS = simple_xy_wr simple_xy_rd sfc_pres_temp_wr \
sfc_pres_temp_rd pres_temp_4D_wr pres_temp_4D_rd format \
quick_large_files quick_small_files sfc_pres_temp_more simple
TESTS = run_examples.sh format quick_large_files quick_small_files \
sfc_pres_temp_more simple
TESTS = run_examples.sh format sfc_pres_temp_more simple
if LARGE_FILE_TESTS
check_PROGRAMS += quick_large_files quick_small_files
TESTS += quick_large_files quick_small_files
endif # LARGE_FILE_TESTS
# If HDF5 is being used, build the netcdf-4/HDF5 examples.
if USE_HDF5
check_PROGRAMS += simple_nc4_wr simple_nc4_rd simple_xy_nc4_wr \