mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
dc9e31df68
The problem was that for opendap, it is possible to use keywords as identifiers when there is no ambiguity. However, the DAP2 parser lost the case of the identifier used the lower case version. Fix is to use the actual text of the symbol when it is used as an identifier. Also added a test case for this (kwcase.*). Additionally cleaned up some misc. dap2 testing problems. 1. ncdap_test/tst_ncdap3.sh was using an empty test set. restored the testing of datasets. 2. as a consequence of #1, some tests needed to be updated with minor tweeks. 3. fix dapmerge to handle multiple DODS_EXTRAS attributes. 4. modify buildattribute to suppress nul characters and terminate the name at the first nul. 5. clean up various test scripts to remove residual, unused references to obsolete netcdf-4 translation. 6. export e.g. NCDUMP from test_common.in so that non-top-level shell scripts can access it.
57 lines
1.7 KiB
Bash
Executable File
57 lines
1.7 KiB
Bash
Executable File
##################################################
|
|
# Local test info
|
|
##################################################
|
|
|
|
if test "x$SETX" != x ; then set -x ; fi
|
|
|
|
# Define the complete URLS
|
|
|
|
FILEURL="file://${testdata3}"
|
|
|
|
# Synth8 and Synth9 still fail
|
|
|
|
SYNTHETICDATA="synth1 synth2 synth3 synth4 synth5 synth6 synth7 synth10"
|
|
|
|
ACTUALDATA1=\
|
|
"1990-S1700101.HDF.WVC_Lat 1998-6-avhrr.dat \
|
|
b31a b31 D1 Drifters \
|
|
EOSDB ingrid nestedDAS NestedSeq2 \
|
|
NestedSeq OverideExample pbug0001b SimpleDrdsExample \
|
|
test.01 test.02 test.03 test.04 \
|
|
test.05 test.06a test.07a \
|
|
test.07 test.21 test.22 \
|
|
test.23 test.31 \
|
|
test.50 test.53 test.55 \
|
|
test.56 test.57 \
|
|
test.66 test.67 test.68 test.69 \
|
|
test.an1 \
|
|
test.dfp1 test.dfr1 test.dfr2 test.dfr3 \
|
|
test.gr1 test.gr2 test.gr3 test.gr4 \
|
|
test.gr5 test.PointFile test.sds1 \
|
|
test.sds2 test.sds3 test.sds4 test.sds5 \
|
|
test.sds6 test.sds7 test.vs1 \
|
|
test.vs2 test.vs3 test.vs4 test.vs5 whoi"
|
|
|
|
ACTUALDATA2=\
|
|
"123bears.nc 123.nc bears.nc \
|
|
ber-2002-10-01.nc ceopL2AIRS2-2.nc \
|
|
data.nc fnoc1.nc \
|
|
in1.nc in_2.nc in.nc \
|
|
in_no_three_double_dmn.nc in_v.nc saco1.nc \
|
|
test.nc text.nc \
|
|
kwcase.nc"
|
|
|
|
# XFAIL tests should be a subset of the other tests; this is used
|
|
# only to detect which are considered XFAIL tests.
|
|
XFAILTESTS=""
|
|
|
|
# For now, remove some tests from windows platform.
|
|
if [ `uname | cut -d "_" -f 1` = "MINGW32" ]; then
|
|
XFAILTESTS="$XFAILTESTS EOSDB OverideExample SimpleDrdsExample test.67 test.gr5 123bears.nc 123.nc bears.nc ber-2002-10-01 data.nc in1.nc in_2.nc in_no_three_double_dmn.nc test.nc text.nc test.22 test.23 test.gr1 in.nc ber-2002-10-01.nc kwcase.nc"
|
|
fi
|
|
|
|
FILETESTS="${SYNTHETICDATA} ${ACTUALDATA1} ${ACTUALDATA2}"
|
|
#DDSTESTS intersect FILETESTS should empty
|
|
DDSTESTS=
|
|
|