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
55 activity="create program 1"
56 cat > $TEMPDIR/tabs.stat <<EOF
57 data list /X 1-80 (a).
60 if [ $? -ne 0 ] ; then no_result ; fi
62 activity="create program 2"
63 printf "\t1\t12\t123\t1234\t12345\n" >> $TEMPDIR/tabs.stat
64 if [ $? -ne 0 ] ; then no_result ; fi
67 activity="create program 3"
68 cat >> $TEMPDIR/tabs.stat <<EOF
73 if [ $? -ne 0 ] ; then no_result ; fi
76 activity="run program"
77 $SUPERVISOR $PSPP -o raw-ascii $TEMPDIR/tabs.stat
78 if [ $? -ne 0 ] ; then no_result ; fi
81 perl -pi -e s/^\s*\$//g $TEMPDIR/pspp.list
82 diff -b $TEMPDIR/pspp.list - << EOF | perl -e 's/^\s*$//g'
83 1.1 DATA LIST. Reading 1 record from INLINE.
84 +--------+------+-------+------+
85 |Variable|Record|Columns|Format|
86 #========#======#=======#======#
88 +--------+------+-------+------+
91 if [ $? -ne 0 ] ; then fail ; fi