-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2755 from DennisHeimbigner/s3interfere.dmh
Mitigate S3 test interference + Unlimited Dimensions in NCZarr
- Loading branch information
Showing
156 changed files
with
3,767 additions
and
1,943 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ AM_DISTCHECK_CONFIGURE_FLAGS = --without-plugin-dir | |
EXTRA_DIST = README.md COPYRIGHT INSTALL.md test_prog.c lib_flags.am \ | ||
cmake CMakeLists.txt COMPILE.cmake.txt config.h.cmake.in \ | ||
cmake_uninstall.cmake.in FixBundle.cmake.in nc-config.cmake.in \ | ||
RELEASE_NOTES.md CTestCustom.cmake CTestConfig.cmake.in \ | ||
RELEASE_NOTES.md CTestConfig.cmake.in CTestCustom.cmake.in \ | ||
libnetcdf.settings.in netCDFConfig.cmake.in CMakeInstallation.cmake \ | ||
test-driver-verbose test_common.in fuzz | ||
|
||
|
@@ -116,10 +116,8 @@ endif | |
|
||
# Optionally build test plugins | ||
if ENABLE_PLUGINS | ||
if ENABLE_FILTER_TESTING | ||
PLUGIN_DIR = plugins | ||
endif | ||
endif | ||
|
||
# If benchmarks were turned on, build and run a bunch more tests. | ||
if BUILD_BENCHMARKS | ||
|
@@ -209,7 +207,17 @@ install-data-hook: | |
|
||
# Create the VERSION file after the build | ||
# in case it is being used by packagers | ||
# Also track the S3 cleanup id | ||
all-local: liblib/libnetcdf.la | ||
echo ${PACKAGE_VERSION} > VERSION | ||
if ENABLE_S3_TESTALL | ||
echo "@TESTUID@" >> ${abs_top_builddir}/s3cleanup_@[email protected] | ||
endif | ||
|
||
if ENABLE_S3_TESTALL | ||
distclean-local: | ||
rm -f ${abs_top_builddir}/s3cleanup_@[email protected] | ||
endif | ||
|
||
# Remove the VERSION file | ||
CLEANFILES = VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.