mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
cc95bd3d47
Columbia server does not serve up proper opendap DDS replies. The Dataset {...} name changes depending on if the request has certain kinds of constraints. Code for a hack was not being used, so restore it. The fix is to effectively ignore differences in Dataset node names if the code is coming from columbia.edu. 2. [NCF-278] The ncgen code is improperly typing int64 integer constants as uint64. 3. [NCF-279] Empty string constants were not being properly filled when their target array is length 1 or more.
19 lines
460 B
Plaintext
19 lines
460 B
Plaintext
# test: ../ncdump/cdl4/ref_const_test.cdl
|
|
# test: ../ncdump/cdl4/ref_tst_chardata.cdl
|
|
K="-k3"
|
|
F="test.cdl"
|
|
#B="-B12"
|
|
DBG="-d"
|
|
#DBG="-D2"
|
|
#NCGEN="./.libs/ncgen"
|
|
NCGEN="./ncgen"
|
|
alias q0="$NCGEN ${DBG} $K -lb $B $F"
|
|
alias qh="$NCGEN ${DBG} $K -lb $B -h $F"
|
|
alias qc="$NCGEN ${DBG} $K -lc $B $F"
|
|
alias qq="gdb --args $NCGEN ${DBG} $K -lb $B $F"
|
|
alias qqc="gdb --args $NCGEN ${DBG} $K -lc $B $F"
|
|
alias qv="valgrind --leak-check=full $NCGEN ${DBG} $K -lb $B $F"
|
|
|
|
|
|
|