X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Froc.sh;fp=tests%2Fcommand%2Froc.sh;h=0c24f0c585961f799c6ccd23fdddfd0ab1dd3381;hb=b40baf410822471fbdeeec553693619d60d7c7b6;hp=0000000000000000000000000000000000000000;hpb=231ebe7e6d5c8c8eba47560793b5fa53c013b87f;p=pspp-builds.git diff --git a/tests/command/roc.sh b/tests/command/roc.sh new file mode 100755 index 00000000..0c24f0c5 --- /dev/null +++ b/tests/command/roc.sh @@ -0,0 +1,173 @@ +#!/bin/sh + +# This program tests the ROC 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 <