From: Ben Pfaff Date: Sun, 10 Oct 2010 19:57:27 +0000 (-0700) Subject: tests: Convert test for UNIFORM expression function to Autotest framework. X-Git-Tag: v0.7.6~62 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=a387b15e7810da1748df16717c1d761f42d640ff tests: Convert test for UNIFORM expression function to Autotest framework. --- diff --git a/tests/automake.mk b/tests/automake.mk index 21934714..e14cd23d 100644 --- a/tests/automake.mk +++ b/tests/automake.mk @@ -32,7 +32,6 @@ dist_TESTS = \ tests/bugs/multipass.sh \ tests/bugs/overwrite-input-file.sh \ tests/bugs/overwrite-special-file.sh \ - tests/bugs/random.sh \ tests/bugs/shbang.sh \ tests/bugs/signals.sh \ tests/bugs/temporary.sh \ diff --git a/tests/bugs/random.sh b/tests/bugs/random.sh deleted file mode 100755 index 716ed33c..00000000 --- a/tests/bugs/random.sh +++ /dev/null @@ -1,110 +0,0 @@ -#!/bin/sh - -# This program tests for a bug which caused UNIFORM(x) to always return zero. - - -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 <