d5df591607bfdd9f41ee1ed28766de1399882f6d
[pspp-builds.git] / tests / command / tabs.sh
1 #!/bin/sh
2
3 # This program tests that tab characters can be used in string input
4
5 TEMPDIR=/tmp/pspp-tst-$$
6 TESTFILE=$TEMPDIR/`basename $0`.sps
7
8 here=`pwd`;
9
10 # ensure that top_srcdir is absolute
11 cd $top_srcdir; top_srcdir=`pwd`
12
13 STAT_CONFIG_PATH=$top_srcdir/config
14 export STAT_CONFIG_PATH
15
16
17 cleanup()
18 {
19      cd /
20      rm -rf $TEMPDIR
21 }
22
23
24 fail()
25 {
26     echo $activity
27     echo FAILED
28     cleanup;
29     exit 1;
30 }
31
32
33 no_result()
34 {
35     echo $activity
36     echo NO RESULT;
37     cleanup;
38     exit 2;
39 }
40
41 pass()
42 {
43     cleanup;
44     exit 0;
45 }
46
47 mkdir -p $TEMPDIR
48
49 cd $TEMPDIR
50
51 activity="create program 1"
52 cat > $TEMPDIR/tabs.stat <<EOF
53 data list /X 1-80 (a).
54 begin data.
55 EOF
56 if [ $? -ne 0 ] ; then no_result ; fi
57
58 activity="create program 2"
59 printf  "\t1\t12\t123\t1234\t12345\n" >> $TEMPDIR/tabs.stat
60 if [ $? -ne 0 ] ; then no_result ; fi
61
62
63 activity="create program 3"
64 cat >> $TEMPDIR/tabs.stat <<EOF
65 end data.
66 print /x.
67 execute.
68 EOF
69 if [ $? -ne 0 ] ; then no_result ; fi
70
71
72 activity="run program"
73 $SUPERVISOR $here/../src/pspp -o raw-ascii $TEMPDIR/tabs.stat
74 if [ $? -ne 0 ] ; then no_result ; fi
75
76
77 perl -pi -e s/^\s*\$//g $TEMPDIR/pspp.list
78 diff  -b $TEMPDIR/pspp.list - << EOF | perl -e 's/^\s*$//g'
79 1.1 DATA LIST.  Reading 1 record from INLINE.
80 +--------+------+-------+------+
81 |Variable|Record|Columns|Format|
82 #========#======#=======#======#
83 |X       |     1|  1- 80|A80   |
84 +--------+------+-------+------+
85     1   12  123 1234    12345
86 EOF
87 if [ $? -ne 0 ] ; then fail ; fi
88
89 pass;