From 6d6a5acedc41e463e541d6263a3079350518ad06 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 10 Oct 2010 14:03:33 -0700 Subject: [PATCH] tests: Convert test for overwriting a special file to Autotest framework. --- tests/automake.mk | 1 - tests/bugs/overwrite-special-file.sh | 103 --------------------------- tests/language/data-io/print.at | 29 ++++++++ 3 files changed, 29 insertions(+), 104 deletions(-) delete mode 100755 tests/bugs/overwrite-special-file.sh diff --git a/tests/automake.mk b/tests/automake.mk index 3a156351..fc6a2cb0 100644 --- a/tests/automake.mk +++ b/tests/automake.mk @@ -27,7 +27,6 @@ dist_TESTS = \ tests/formats/wkday-in.sh \ tests/formats/wkday-out.sh \ tests/formats/360.sh \ - tests/bugs/overwrite-special-file.sh \ tests/bugs/shbang.sh \ tests/bugs/signals.sh \ tests/bugs/temporary.sh \ diff --git a/tests/bugs/overwrite-special-file.sh b/tests/bugs/overwrite-special-file.sh deleted file mode 100755 index dad9157b..00000000 --- a/tests/bugs/overwrite-special-file.sh +++ /dev/null @@ -1,103 +0,0 @@ -#!/bin/sh - -# This program tests that simultaneous input and output to a single -# file properly coexist, with the output atomically replacing the -# input if successful. - -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 - -# This test only works on systems that have a /dev/null device... -test -c /dev/null || no_result - -# ...and that are able to make a symbolic link to it... -ln -s /dev/null foo.out || no_result - -# ...that is still /dev/null. -test -c /dev/null || no_result - -activity="create program 1" -cat > $TESTFILE <