mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-27 08:49:16 +08:00
9380790ea8
re: The current netcdf-c release has some problems with the mingw platform on windows. Mostly they are path issues. Changes to support mingw+msys2: ------------------------------- * Enable option of looking into the windows registry to find the mingw root path. In aid of proper path handling. * Add mingw+msys as a specific platform in configure.ac and move testing of the platform to the front so it is available early. * Handle mingw X libncpoco (dynamic loader) properly even though mingw does not yet support it. * Handle mingw X plugins properly even though mingw does not yet support it. * Alias pwd='pwd -W' to better handle paths in shell scripts. * Plus a number of other minor compile irritations. * Disallow the use of multiple nc_open's on the same file for windows (and mingw) because windows does not seem to handle these properly. Not sure why we did not catch this earlier. * Add mountpoint info to dpathmgr.c to help support mingw. * Cleanup dpathmgr conversions. Known problems: --------------- * I have not been able to get shared libraries to work, so plugins/filters must be disabled. * There is some kind of problem with libcurl that I have not solved, so all uses of libcurl (currently DAP+Byterange) must be disabled. Misc. other fixes: ------------------ * Cleanup the relationship between ENABLE_PLUGINS and various other flags in CMakeLists.txt and configure.ac. * Re-arrange the TESTDIRS order in Makefile.am. * Add pseudo-breakpoint to nclog.[ch] for debugging. * Improve the documentation of the path manager code in ncpathmgr.h * Add better support for relative paths in dpathmgr.c * Default the mode args to NCfopen to include "b" (binary) for windows. * Add optional debugging output in various places. * Make sure that everything builds with plugins disabled. * Fix numerous (s)printf inconsistencies betweenb the format spec and the arguments.
63 lines
1.5 KiB
Bash
Executable File
63 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
. ../test_common.sh
|
|
|
|
. "$srcdir/test_nczarr.sh"
|
|
|
|
set -e
|
|
|
|
echo "*** Test: Github issues #2063, #2062, #2059"
|
|
|
|
testcase2059() {
|
|
zext=$1
|
|
echo "*** Test: Github issue #2059"
|
|
fileargs tmp_groups_regular "mode=zarr,$zext"
|
|
deletemap $zext $file
|
|
${NCCOPY} ${srcdir}/ref_groups.h5 "$fileurl"
|
|
rm -f tmp.cdl
|
|
${ZMD} -h "$fileurl"
|
|
${NCDUMP} -s -n tmp_groups_regular "$fileurl" > tmp.cdl
|
|
sclean tmp.cdl tmp_groups_regular_$zext.cdl
|
|
diff -wb ${srcdir}/ref_groups_regular.cdl tmp_groups_regular_$zext.cdl
|
|
}
|
|
|
|
testcase2062() {
|
|
zext=$1
|
|
echo "*** Test: Github issue #2062"
|
|
rm -fr ref_byte.zarr
|
|
unzip ${srcdir}/ref_byte.zarr.zip
|
|
rm -fr tmp.cdl
|
|
${ZMD} -h "file://ref_byte.zarr#mode=zarr,$zext"
|
|
${NCDUMP} -s "file://ref_byte.zarr#mode=zarr,$zext" > tmp.cdl
|
|
sclean tmp.cdl tmp_byte_$zext.cdl
|
|
diff -wb ${srcdir}/ref_byte.cdl tmp_byte_$zext.cdl
|
|
rm -fr ref_byte.zarr
|
|
}
|
|
|
|
testcase2063() {
|
|
zext=$1
|
|
echo "*** Test: Github issue #2063"
|
|
rm -fr ref_byte_fill_value_null.zarr
|
|
unzip ${srcdir}/ref_byte_fill_value_null.zarr.zip
|
|
rm -fr tmp.cdl
|
|
${ZMD} -h "file://ref_byte_fill_value_null.zarr#mode=zarr,$zext"
|
|
${NCDUMP} -s "file://ref_byte_fill_value_null.zarr#mode=zarr,$zext" > tmp.cdl
|
|
sclean tmp.cdl tmp_byte_fill_value_null_$zext.cdl
|
|
diff -wb ${srcdir}/ref_byte_fill_value_null.cdl tmp_byte_fill_value_null_$zext.cdl
|
|
rm -fr ref_byte_fill_value_null.zarr
|
|
}
|
|
|
|
#testcase2059 file
|
|
#testcase2062 file
|
|
testcase2063 file
|
|
exit 0
|
|
if test "x$FEATURE_NCZARR_ZIP" = xyes ; then
|
|
testcase2059 zip
|
|
fi
|
|
if test "x$FEATURE_S3TESTS" = xyes ; then
|
|
testcase2059 s3
|
|
fi
|
|
|
|
exit 0
|