3 # This program tests variable display attribute commands: VARIABLE
4 # ALIGNMENT, VARIABLE WIDTH, VARIABLE LEVEL.
6 TEMPDIR=/tmp/pspp-tst-$$
7 TESTFILE=$TEMPDIR/`basename $0`.sps
9 # ensure that top_builddir are absolute
10 if [ -z "$top_builddir" ] ; then top_builddir=. ; fi
11 if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi
12 top_builddir=`cd $top_builddir; pwd`
13 PSPP=$top_builddir/src/ui/terminal/pspp
15 # ensure that top_srcdir is absolute
16 top_srcdir=`cd $top_srcdir; pwd`
18 STAT_CONFIG_PATH=$top_srcdir/config
19 export STAT_CONFIG_PATH
24 if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then
25 echo "NOT cleaning $TEMPDIR"
60 # Create command file.
61 activity="create program"
62 cat > $TESTFILE << EOF
63 data list free /x y z.
64 variable alignment x (left)/y (right)/z (center).
65 variable width x (10)/y (12)/z (14).
66 variable level x (scale)/y (ordinal)/z (nominal).
69 if [ $? -ne 0 ] ; then no_result ; fi
72 activity="run program"
73 $SUPERVISOR $PSPP --testing-mode $TESTFILE
74 if [ $? -ne 0 ] ; then fail ; fi
76 activity="compare output"
77 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
78 diff -b $TEMPDIR/pspp.list - << EOF
80 +--------+-------------------------------------------+--------+
81 |Variable|Description |Position|
82 #========#===========================================#========#
85 | |Display Alignment: Left | |
86 | |Display Width: 10 | |
87 +--------+-------------------------------------------+--------+
89 | |Measure: Ordinal | |
90 | |Display Alignment: Right | |
91 | |Display Width: 12 | |
92 +--------+-------------------------------------------+--------+
94 | |Measure: Nominal | |
95 | |Display Alignment: Center | |
96 | |Display Width: 14 | |
97 +--------+-------------------------------------------+--------+
99 if [ $? -ne 0 ] ; then fail ; fi