mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
a83b7b9fe7
This is in response to issue https://github.com/Unidata/netcdf-c/issues/2188#issuecomment-1072762308 although it does not fix that problem.
45 lines
889 B
Bash
Executable File
45 lines
889 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
. ../test_common.sh
|
|
|
|
set -e
|
|
|
|
. ${srcdir}/tst_utils.sh
|
|
|
|
# get the list of test url targets
|
|
. ${srcdir}/tst_urls.sh
|
|
|
|
PARAMS="${PARAMS}[netcdf3]"
|
|
|
|
# Choose tests to run
|
|
if test "x$longtests" != x; then
|
|
WHICHTESTS="L1 LC1 LC2"
|
|
else # Standard test set
|
|
WHICHTESTS="S1 C1"
|
|
fi
|
|
|
|
TITLE="DAP to netCDF-3 translation using remote server"
|
|
EXPECTED="$expected3"
|
|
RESULTSDIR="remote_results"
|
|
|
|
rm -fr ${RESULTSDIR}
|
|
mkdir -p "${RESULTSDIR}"
|
|
|
|
echo "*** Testing $TITLE "
|
|
echo " Base URL: ${DTS}"
|
|
echo " Client Parameters: ${PARAMS}"
|
|
if test "$cache" = 0; then echo " Caching: off"; else echo " Caching: on"; fi
|
|
echo " Note: The remote tests may be slow or even fail if the server is overloaded"
|
|
|
|
cd ${RESULTSDIR}
|
|
for i in $WHICHTESTS ; do
|
|
computewhich $i
|
|
doremotetests remote
|
|
done
|
|
cd ..
|
|
summarize
|
|
cleanup
|
|
doexit
|
|
|