From ca5eedaaf2b10a13b931f8a62dea5c1efb5916c5 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 27 Sep 2010 22:06:45 -0700 Subject: [PATCH] tests: Convert IMPORT and EXPORT test to use Autotest. --- tests/automake.mk | 1 - tests/command/import-export.sh | 90 ---------------------------------- tests/language/data-io/save.at | 26 ++++++++++ 3 files changed, 26 insertions(+), 91 deletions(-) delete mode 100755 tests/command/import-export.sh diff --git a/tests/automake.mk b/tests/automake.mk index 88ca603a..5bb9fa7c 100644 --- a/tests/automake.mk +++ b/tests/automake.mk @@ -10,7 +10,6 @@ TESTS_ENVIRONMENT += LC_ALL=C TESTS_ENVIRONMENT += EXEEXT=$(EXEEXT) dist_TESTS = \ - tests/command/import-export.sh \ tests/command/insert.sh \ tests/command/lag.sh \ tests/command/line-ends.sh \ diff --git a/tests/command/import-export.sh b/tests/command/import-export.sh deleted file mode 100755 index e63eb2f8..00000000 --- a/tests/command/import-export.sh +++ /dev/null @@ -1,90 +0,0 @@ -#!/bin/sh - -# This program tests the IMPORT and EXPORT commands - -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$EXEEXT - -# 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="create program" -cat > $TESTFILE <