From: Ben Pfaff Date: Fri, 2 Apr 2010 23:53:07 +0000 (-0700) Subject: AUTORECODE: Use Autotest for test suite. X-Git-Tag: v0.7.5~68 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=731a9abeeefbb9ac53e93a58a22a17bc06b4fdc0 AUTORECODE: Use Autotest for test suite. --- diff --git a/tests/automake.mk b/tests/automake.mk index 3b3f14a7..e392270e 100644 --- a/tests/automake.mk +++ b/tests/automake.mk @@ -12,7 +12,6 @@ dist_TESTS = \ tests/command/add-files.sh \ tests/command/aggregate.sh \ tests/command/attributes.sh \ - tests/command/autorecod.sh \ tests/command/beg-data.sh \ tests/command/bignum.sh \ tests/command/count.sh \ @@ -417,6 +416,7 @@ EXTRA_DIST += \ $(TESTSUITE) TESTSUITE_AT = \ tests/testsuite.at \ + tests/language/stats/autorecode.at \ tests/language/stats/crosstabs.at \ tests/language/stats/frequencies.at \ tests/output/render.at diff --git a/tests/command/autorecod.sh b/tests/command/autorecod.sh deleted file mode 100755 index 6aaf8722..00000000 --- a/tests/command/autorecod.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/bin/sh - -# This program tests the autorecode command - -TEMPDIR=/tmp/pspp-tst-$$ -TESTFILE=$TEMPDIR/`basename $0`.sps - - -# 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 - -# ensure that top_srcdir is absolute -top_srcdir=`cd $top_srcdir; pwd` - -STAT_CONFIG_PATH=$top_srcdir/config -export STAT_CONFIG_PATH - -LANG=C -export LANG - -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="create program" -cat > $TESTFILE < 4 -asdfk 1 3 3 -end data. - -autorecode x y into A B/descend. - -list. -/* Just to make sure it works on second & subsequent executions, -/* try it again. -compute Z=trunc(y/2). -autorecode z into W. -list. -EOF -if [ $? -ne 0 ] ; then no_result ; fi - -activity="run program" -$SUPERVISOR $PSPP -o pspp.csv $TESTFILE -if [ $? -ne 0 ] ; then no_result ; fi - -activity="test output" -diff -b $TEMPDIR/pspp.csv - <