checkin of 0.3.0
[pspp-builds.git] / tests / print.stat
1 title 'Test PRINT transformation'.
2
3 remark EOF
4 ----------------------------------------------------------------------
5 There is no test for DATA LIST FIXED since it is imagined that the
6 rest of the tests give it a pretty good workout.
7 ----------------------------------------------------------------------
8 EOF
9 remark EOF
10 ----------------------------------------------------------------------
11 Testing use of DATA LIST FREE.
12 ----------------------------------------------------------------------
13 EOF
14 data list free table file='data-list.data'/A B C D.
15 print outfile="foo" table/A(f8.2) '/' B(e8.2) '/' C(n10) '/' D(rbhex16) '/'.
16 print space a.
17 print outfile="foo" /a b c d.
18 list.
19
20 remark EOF
21 ----------------------------------------------------------------------
22 Testing use of DATA LIST LIST.
23 ----------------------------------------------------------------------
24 EOF
25 data list list table file='data-list.data'/A B C D.
26 print table/A B C D.
27 list.
28