1#!/bin/sh
2
3if test "x$srcdir" = x ; then srcdir=`pwd`; fi
4. ../test_common.sh
5
6set -e
7
8
9echo "*** Test integer constant suffixes"
10echo "*** creating inttags.nc from inttags.cdl..."
11${NCGEN} -lb -o inttags.nc $srcdir/inttags.cdl
12echo "*** creating tst_inttags.cdl from inttags.nc..."
13${NCDUMP} inttags.nc > tst_inttags.cdl
14echo "*** comparing tst_inttags.cdl to ref_inttags.nc..."
15diff -b -w tst_inttags.cdl $srcdir/ref_inttags.cdl
16
17rm inttags.nc tst_inttags.cdl
18
19exit 0
20