data-in: Convert tests for N and Z formats to Autotest framework.
authorBen Pfaff <blp@cs.stanford.edu>
Thu, 14 Oct 2010 01:32:39 +0000 (18:32 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Thu, 14 Oct 2010 01:32:39 +0000 (18:32 -0700)
tests/automake.mk
tests/data/data-in.at
tests/data/legacy-in.expected.cmp.gz [new file with mode: 0644]
tests/formats/legacy-in.expected.cmp.gz [deleted file]
tests/formats/legacy-in.sh [deleted file]

index 7cafde45f4b9ce27b071fec2ee4517abcf2d3f04..bb229d3108f9723bc7faf1f6f2a96412029bb06b 100644 (file)
@@ -12,7 +12,6 @@ TESTS_ENVIRONMENT += EXEEXT=$(EXEEXT)
 dist_TESTS = \
        tests/formats/date-in.sh \
        tests/formats/ib-in.sh \
-       tests/formats/legacy-in.sh \
        tests/formats/month-in.sh \
        tests/formats/num-in.sh \
        tests/formats/num-out.sh \
@@ -218,10 +217,10 @@ EXTRA_DIST += \
        tests/coverage.sh tests/test_template \
        tests/data/bcd-in.expected.cmp.gz \
        tests/data/binhex-out.expected.gz \
+       tests/data/legacy-in.expected.cmp.gz \
        tests/data/v13.sav \
        tests/data/v14.sav \
        tests/formats/ib-in.expected.cmp.gz \
-       tests/formats/legacy-in.expected.cmp.gz \
        tests/formats/num-in.expected.gz \
        tests/formats/num-out.expected.cmp.gz \
        tests/formats/num-out-cmp.pl \
index f3c1fde952b34871ba18b06a1fd6ca55e9c578a8..77827b0b01aec5d8e2700910d1701d59aabbe1b5 100644 (file)
@@ -101,3 +101,23 @@ AT_CHECK([gzip -cd < $top_srcdir/tests/data/bcd-in.expected.cmp.gz | \
 AT_CHECK([pspp -O format=csv bcd-in.sps])
 AT_CHECK([cat bcd-in.out], [0], [expout])
 AT_CLEANUP
+
+AT_SETUP([legacy input (N and Z formats)])
+AT_CHECK([$PERL -e 'print pack "n", $_ foreach 0...65535' > legacy-in.data])
+AT_CHECK([wc -c < legacy-in.data], [0], [131072
+])
+AT_DATA([legacy-in.sps], [dnl
+SET ERRORS=NONE.
+SET MXWARNS=10000000.
+SET MXERRS=10000000.
+FILE HANDLE data/NAME='legacy-in.data'/MODE=IMAGE/LRECL=2.
+DATA LIST NOTABLE FILE=data/n 1-2 (N) z 1-2 (z).
+COMPUTE x=$CASENUM - 1.
+PRINT OUTFILE='legacy-in.out'/x (PIBHEX4) ' ' N Z.
+EXECUTE.
+])
+AT_CHECK([gzip -cd < $top_srcdir/tests/data/legacy-in.expected.cmp.gz | \
+            $PERL -pe "printf ' %04X ', $.-1" > expout])
+AT_CHECK([pspp -O format=csv legacy-in.sps])
+AT_CHECK([cat legacy-in.out], [0], [expout])
+AT_CLEANUP
diff --git a/tests/data/legacy-in.expected.cmp.gz b/tests/data/legacy-in.expected.cmp.gz
new file mode 100644 (file)
index 0000000..952f9b5
Binary files /dev/null and b/tests/data/legacy-in.expected.cmp.gz differ
diff --git a/tests/formats/legacy-in.expected.cmp.gz b/tests/formats/legacy-in.expected.cmp.gz
deleted file mode 100644 (file)
index 952f9b5..0000000
Binary files a/tests/formats/legacy-in.expected.cmp.gz and /dev/null differ
diff --git a/tests/formats/legacy-in.sh b/tests/formats/legacy-in.sh
deleted file mode 100755 (executable)
index bdf41c5..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
-#! /bin/sh
-
-TEMPDIR=/tmp/pspp-tst-$$
-
-# ensure that top_builddir  are absolute
-if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
-if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
-top_builddir=`cd $top_builddir; pwd`
-PSPP=$top_builddir/src/ui/terminal/pspp$EXEEXT
-: ${PERL:=perl}
-
-# ensure that top_srcdir is absolute
-top_srcdir=`cd $top_srcdir; pwd`
-
-STAT_CONFIG_PATH=$top_srcdir/config
-export STAT_CONFIG_PATH
-
-
-cleanup()
-{
-     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
-       echo "NOT cleaning $TEMPDIR" 
-       return ; 
-     fi
-     cd /
-     rm -rf $TEMPDIR
-}
-
-
-fail()
-{
-    echo $activity
-    echo FAILED
-    cleanup;
-    exit 1;
-}
-
-
-no_result()
-{
-    echo $activity
-    echo NO RESULT;
-    cleanup;
-    exit 2;
-}
-
-pass()
-{
-    cleanup;
-    exit 0;
-}
-
-mkdir -p $TEMPDIR
-
-cd $TEMPDIR
-
-activity="generate data input file"
-$PERL -e 'print pack "n", $_ foreach 0...65535' > legacy-in.data
-
-activity="write pspp syntax"
-cat > legacy-in.pspp <<'EOF'
-SET ERRORS=NONE.
-SET MXWARNS=10000000.
-SET MXERRS=10000000.
-FILE HANDLE data/NAME='legacy-in.data'/MODE=IMAGE/LRECL=2.
-DATA LIST FILE=data/n 1-2 (N) z 1-2 (z).
-COMPUTE x=$CASENUM - 1.
-PRINT OUTFILE='legacy-in.out'/x (PIBHEX4) ' ' N Z.
-EXECUTE.
-EOF
-if [ $? -ne 0 ] ; then no_result ; fi
-
-activity="run program"
-$SUPERVISOR $PSPP -o pspp.csv legacy-in.pspp
-if [ $? -ne 0 ] ; then no_result ; fi
-
-activity="gunzip expected results"
-gzip -cd < $top_srcdir/tests/formats/legacy-in.expected.cmp.gz > legacy-in.expected.cmp
-if [ $? -ne 0 ] ; then no_result ; fi
-
-activity="decompress expected results"
-$PERL -pe "printf ' %04X ', $.-1" < legacy-in.expected.cmp > legacy-in.expected
-if [ $? -ne 0 ] ; then no_result ; fi
-
-activity="compare output"
-diff -u legacy-in.expected legacy-in.out
-if [ $? -ne 0 ] ; then fail ; fi
-
-pass