3 # This program tests that tab characters can be used in string input
5 TEMPDIR=/tmp/pspp-tst-$$
6 TESTFILE=$TEMPDIR/`basename $0`.sps
8 # ensure that top_builddir are absolute
9 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
10 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
11 top_builddir=`cd $top_builddir; pwd`
12 PSPP=$top_builddir/src/ui/terminal/pspp
14 # ensure that top_srcdir is absolute
15 top_srcdir=`cd $top_srcdir; pwd`
17 STAT_CONFIG_PATH=$top_srcdir/config
18 export STAT_CONFIG_PATH
23 if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then
24 echo "NOT cleaning $TEMPDIR"
59 activity="create program 1"
60 cat > $TEMPDIR/tabs.stat <<EOF
61 data list /X 1-80 (a).
64 if [ $? -ne 0 ] ; then no_result ; fi
66 activity="create program 2"
67 printf "\t1\t12\t123\t1234\t12345\n" >> $TEMPDIR/tabs.stat
68 if [ $? -ne 0 ] ; then no_result ; fi
71 activity="create program 3"
72 cat >> $TEMPDIR/tabs.stat <<EOF
77 if [ $? -ne 0 ] ; then no_result ; fi
80 activity="run program"
81 $SUPERVISOR $PSPP --testing-mode $TEMPDIR/tabs.stat
82 if [ $? -ne 0 ] ; then no_result ; fi
85 perl -pi -e s/^\s*\$//g $TEMPDIR/pspp.list
86 diff -b $TEMPDIR/pspp.list - << EOF | perl -e 's/^\s*$//g'
87 1.1 DATA LIST. Reading 1 record from INLINE.
88 +--------+------+-------+------+
89 |Variable|Record|Columns|Format|
90 #========#======#=======#======#
92 +--------+------+-------+------+
95 if [ $? -ne 0 ] ; then fail ; fi