3 # This program tests the flip command
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
57 activity="create flip.stat"
58 cat > $TEMPDIR/flip.stat <<EOF
59 * Test FLIP with NEWNAME or, equivalently, with a variable named CASE_LBL.
60 data list notable /N 1 (a) A B C D 2-9.
74 * Test FLIP without NEWNAME.
75 data list list notable /v1 to v10.
79 4 5 6 7 8 9 10 11 12 13
87 if [ $? -ne 0 ] ; then no_result ; fi
90 activity="run program"
91 $SUPERVISOR $PSPP -o raw-ascii $TEMPDIR/flip.stat
92 if [ $? -ne 0 ] ; then no_result ; fi
94 activity="compare output"
95 perl -pi -e 's/^\s*$//g' $TEMPDIR/pspp.list
96 diff -b $TEMPDIR/pspp.list - << EOF
105 -------- -------- -------- -------- -------- --------
106 A 1.00 6.00 11.00 16.00 21.00
107 B 2.00 7.00 12.00 17.00 22.00
108 C 3.00 8.00 13.00 18.00 23.00
109 D 4.00 9.00 14.00 19.00 24.00
111 -------- -------- -------- -------- --------
112 V 1.00 2.00 3.00 4.00
113 W 6.00 7.00 8.00 9.00
114 X 11.00 12.00 13.00 14.00
115 Y 16.00 17.00 18.00 19.00
116 Z 21.00 22.00 23.00 24.00
117 v1 v2 v3 v4 v5 v6 v7 v8 v9 v10
118 -- -- -- -- -- -- -- -- -- ---
120 4 5 6 7 8 9 10 11 12 13
121 CASE_LBL VAR000 VAR001
122 -------- -------- --------
134 if [ $? -ne 0 ] ; then fail ; fi