mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-30 16:10:44 +08:00
test
This commit is contained in:
parent
2e92b40d42
commit
6d4ecf2f76
2
.github/workflows/run_tests_osx.yml
vendored
2
.github/workflows/run_tests_osx.yml
vendored
@ -7,7 +7,7 @@
|
||||
name: Run macOS-based netCDF Tests
|
||||
|
||||
|
||||
on: [pull_request, workflow_dispatch]
|
||||
on: [push,pull_request, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
|
||||
|
2
.github/workflows/run_tests_ubuntu.yml
vendored
2
.github/workflows/run_tests_ubuntu.yml
vendored
@ -4,7 +4,7 @@
|
||||
|
||||
name: Run Ubuntu/Linux netCDF Tests
|
||||
|
||||
on: [pull_request, workflow_dispatch]
|
||||
on: [push,pull_request, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
|
||||
|
2
.github/workflows/run_tests_win_mingw.yml
vendored
2
.github/workflows/run_tests_win_mingw.yml
vendored
@ -7,7 +7,7 @@
|
||||
name: Run MSYS2, MinGW64-based Tests
|
||||
|
||||
|
||||
on: [pull_request, workflow_dispatch]
|
||||
on: [push,pull_request, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
|
||||
|
@ -1062,14 +1062,15 @@ ENDIF()
|
||||
IF(ENABLE_DAP)
|
||||
SET(USE_DAP ON CACHE BOOL "")
|
||||
SET(ENABLE_DAP2 ON CACHE BOOL "")
|
||||
SET(ENABLE_DAP4 OFF CACHE BOOL "")
|
||||
|
||||
IF(ENABLE_HDF5)
|
||||
SET(ENABLE_DAP4 ON CACHE BOOL "")
|
||||
IF(NOT ENABLE_HDF5)
|
||||
SET(ENABLE_DAP4 OFF CACHE BOOL "")
|
||||
ENDIF(ENABLE_HDF5)
|
||||
|
||||
ELSE()
|
||||
SET(ENABLE_DAP2 OFF)
|
||||
SET(ENABLE_DAP4 OFF)
|
||||
SET(ENABLE_DAP2 OFF CACHE BOOL "")
|
||||
SET(ENABLE_DAP4 OFF CACHE BOOL "")
|
||||
ENDIF()
|
||||
|
||||
# Option to support byte-range reading of remote datasets
|
||||
|
@ -607,7 +607,7 @@ fi
|
||||
AM_CONDITIONAL(ENABLE_QUANTIZE, [test x$enable_quantize = xyes])
|
||||
|
||||
# --enable-dap => enable-dap4
|
||||
enable_dap4=$enable_dap
|
||||
enable_dap4=no
|
||||
AC_MSG_CHECKING([whether dap use of remotetest server should be enabled])
|
||||
AC_ARG_ENABLE([dap-remote-tests],
|
||||
[AS_HELP_STRING([--disable-dap-remote-tests],
|
||||
|
@ -91,13 +91,13 @@ echo "*** Test that nccopy -c can chunk and unchunk files"
|
||||
${NCCOPY} -M0 tst_chunking.nc tmp_ncc4.nc
|
||||
${NCDUMP} tmp_ncc4.nc > tmp_ncc4.cdl
|
||||
${NCCOPY} -c dim0/,dim1/1,dim2/,dim3/1,dim4/,dim5/1,dim6/ tst_chunking.nc tmp-chunked.nc
|
||||
${NCDUMP} -n tmp tmp-chunked.nc > tmp-chunked.cdl
|
||||
${NCDUMP} -n tmp_ncc4 tmp-chunked.nc > tmp-chunked.cdl
|
||||
diff tmp_ncc4.cdl tmp-chunked.cdl
|
||||
${NCCOPY} -c dim0/,dim1/,dim2/,dim3/,dim4/,dim5/,dim6/ tmp-chunked.nc tmp-unchunked.nc
|
||||
${NCDUMP} -n tmp tmp-unchunked.nc > tmp-unchunked.cdl
|
||||
${NCDUMP} -n tmp_ncc4 tmp-unchunked.nc > tmp-unchunked.cdl
|
||||
diff tmp_ncc4.cdl tmp-unchunked.cdl
|
||||
${NCCOPY} -c // tmp-chunked.nc tmp-unchunked2.nc
|
||||
${NCDUMP} -n tmp tmp-unchunked.nc > tmp-unchunked2.cdl
|
||||
${NCDUMP} -n tmp_ncc4 tmp-unchunked.nc > tmp-unchunked2.cdl
|
||||
diff tmp_ncc4.cdl tmp-unchunked2.cdl
|
||||
echo "*** Test that nccopy -c works as intended for record dimension default (1)"
|
||||
${NCGEN} -b -o tst_bug321.nc $srcdir/tst_bug321.cdl
|
||||
|
Loading…
Reference in New Issue
Block a user