You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
889 B
45 lines
889 B
2 years ago
|
#!/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
|
||
|
|