mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-24 16:04:40 +08:00
c99058741a
Ncgen is unable to resolve ambiguous references to an enum constant when two different enums have same econstant name. Solved by allowing more specific forms for econstant references. 1. /.../enumname.enumconstname 2. enumname.enumconstname 3. enumconstname Case 1 is resolved by using the econstant in the specific enum definition. If none is found, an error is reported. Case 2 is resolved by 1. finding an enclosing group with an enum definition with the specified name and containing the specified econstant. If there are more than one, then an error is reported 2. finding all enum definitions in the dataset that have the specified enum name and contain the specified econstant. If more than one is found, then an error is reported. If the above two methods fail, then report an error. Case 3 is similar to case 2, but all enums, irrespective of name are used if they contains the specified enum constant. The ref_tst_econst.cdl test in ncdump is causing ncdump to fail. So there may be yet some problem.
47 lines
1.1 KiB
Bash
Executable File
47 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
verbose=1
|
|
set -e
|
|
|
|
# To add a new test,
|
|
# 1. put the .cdl file in the 'cdl4' directory
|
|
# 2. put the result of running ncgen then ncdump
|
|
# into the directory 'expected4' as .dmp
|
|
# 3. Modify the file tst_ncgen4_shared.sh to add
|
|
# the test to the end of the TESTS4 variable
|
|
# 4. Add the new files into cdl4/Makefile.am
|
|
# and expected4/Makefile.am
|
|
|
|
if test "x$builddir" = "x"; then builddir=`pwd`; fi
|
|
if test "x$srcdir" = "x"; then srcdir=`dirname $0`; fi
|
|
|
|
# Make buildir absolute
|
|
cd $builddir
|
|
builddir=`pwd`
|
|
|
|
# Make srcdir be absolute
|
|
cd $srcdir
|
|
srcdir=`pwd`
|
|
cd $builddir
|
|
|
|
export verbose
|
|
export srcdir
|
|
export builddir
|
|
|
|
KFLAG=1 ; export KFLAG
|
|
echo "*** Performing diff tests: k=1"
|
|
sh ${srcdir}/tst_ncgen4_diff.sh
|
|
echo "*** Performing cycle tests: k=1"
|
|
sh ${srcdir}/tst_ncgen4_cycle.sh
|
|
KFLAG=3 ; export KFLAG
|
|
echo "*** Performing diff tests: k=3"
|
|
sh ${srcdir}/tst_ncgen4_diff.sh
|
|
echo "*** Performing cycle tests: k=3"
|
|
sh ${srcdir}/tst_ncgen4_cycle.sh
|
|
KFLAG=4 ; export KFLAG
|
|
echo "*** Performing diff tests: k=4"
|
|
sh ${srcdir}/tst_ncgen4_diff.sh
|
|
echo "*** Performing cycle tests: k=4"
|
|
sh ${srcdir}/tst_ncgen4_cycle.sh
|
|
exit
|
|
|