X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Ftabs.sh;h=ad530f45c83cb6cbfbb89881911e3b841ce8b8e7;hb=873675c422db29ff7575758411be7af304e3a728;hp=9d57c0082e94ec2b6cafd94edf01ea045fcef69f;hpb=c48bf64ab648b9b761a8e0774db3672d8009c64c;p=pspp-builds.git diff --git a/tests/command/tabs.sh b/tests/command/tabs.sh index 9d57c008..ad530f45 100755 --- a/tests/command/tabs.sh +++ b/tests/command/tabs.sh @@ -3,17 +3,28 @@ # This program tests that tab characters can be used in string input TEMPDIR=/tmp/pspp-tst-$$ +TESTFILE=$TEMPDIR/`basename $0`.sps -here=`pwd`; +# 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 -cd $top_srcdir; top_srcdir=`pwd` +top_srcdir=`cd $top_srcdir; pwd` -export STAT_CONFIG_PATH=$top_srcdir/config +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 } @@ -47,13 +58,13 @@ cd $TEMPDIR activity="create program 1" cat > $TEMPDIR/tabs.stat <> $TEMPDIR/tabs.stat +printf "\t1\t12\t123\t1234\t12345\n" >> $TEMPDIR/tabs.stat if [ $? -ne 0 ] ; then no_result ; fi @@ -67,18 +78,19 @@ if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$SUPERVISOR $here/../src/pspp -o raw-ascii $TEMPDIR/tabs.stat +$SUPERVISOR $PSPP --testing-mode $TEMPDIR/tabs.stat if [ $? -ne 0 ] ; then no_result ; fi -diff -B -b $TEMPDIR/pspp.list - << EOF -1.1 DATA LIST. Reading 1 record from the command file. +perl -pi -e s/^\s*\$//g $TEMPDIR/pspp.list +diff -b $TEMPDIR/pspp.list - << EOF | perl -e 's/^\s*$//g' +1.1 DATA LIST. Reading 1 record from INLINE. +--------+------+-------+------+ |Variable|Record|Columns|Format| #========#======#=======#======# |X | 1| 1- 80|A80 | +--------+------+-------+------+ - 1 12 123 1234 12345 123456 1234567 12345678 + 1 12 123 1234 12345 EOF if [ $? -ne 0 ] ; then fail ; fi