67fdee495f80d54ebd5afd7696d544c737d5a65b
[pspp] / tests / language / dictionary / vector.at
1 dnl PSPP - a program for statistical analysis.
2 dnl Copyright (C) 2017 Free Software Foundation, Inc.
3 dnl 
4 dnl This program is free software: you can redistribute it and/or modify
5 dnl it under the terms of the GNU General Public License as published by
6 dnl the Free Software Foundation, either version 3 of the License, or
7 dnl (at your option) any later version.
8 dnl 
9 dnl This program is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 dnl GNU General Public License for more details.
13 dnl 
14 dnl You should have received a copy of the GNU General Public License
15 dnl along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 dnl
17 AT_BANNER([VECTOR])
18
19 AT_SETUP([VECTOR short form])
20 AT_DATA([vector.sps], [dnl
21 data list notable/x 1.
22 vector v(4).
23 display vector.
24 ])
25 AT_CHECK([pspp -o pspp.csv vector.sps])
26 AT_CHECK([cat pspp.csv], [0], [dnl
27 Vector,Position,Variable,Print Format
28 v,1,v1,F8.2
29 ,2,v2,F8.2
30 ,3,v3,F8.2
31 ,4,v4,F8.2
32 ])
33 AT_CLEANUP
34
35 AT_SETUP([VECTOR short form with format specification])
36 AT_DATA([vector.sps], [dnl
37 data list notable/x 1.
38 vector #vec(4, comma10.2)
39       /#svec(3, a8).
40 display vector.
41 ])
42 AT_CHECK([pspp -o pspp.csv vector.sps])
43 AT_CHECK([cat pspp.csv], [0], [dnl
44 Vector,Position,Variable,Print Format
45 #vec,1,#vec1,COMMA10.2
46 ,2,#vec2,COMMA10.2
47 ,3,#vec3,COMMA10.2
48 ,4,#vec4,COMMA10.2
49 #svec,1,#svec1,A8
50 ,2,#svec2,A8
51 ,3,#svec3,A8
52 ])
53 AT_CLEANUP
54
55 AT_SETUP([VECTOR short form in INPUT PROGRAM])
56 AT_DATA([vector.sps], [dnl
57 input program.
58 vector x(5).
59 data list notable/x5 x2 x3 x1 x4 1-5.
60 end input program.
61 display vector.
62 ])
63 AT_CHECK([pspp -o pspp.csv vector.sps])
64 AT_CHECK([cat pspp.csv], [0], [dnl
65 Vector,Position,Variable,Print Format
66 x,1,x1,F8.2
67 ,2,x2,F8.2
68 ,3,x3,F8.2
69 ,4,x4,F8.2
70 ,5,x5,F8.2
71 ])
72 AT_CLEANUP
73
74 AT_SETUP([VECTOR long form])
75 AT_DATA([vector.sps], [dnl
76 data list notable/u w x y z 1-5.
77 vector a=u to y.
78 vector b=x to z.
79 vector c=all.
80 display vector.
81 ])
82 AT_CHECK([pspp -o pspp.csv vector.sps])
83 AT_CHECK([cat pspp.csv], [0], [dnl
84 Vector,Position,Variable,Print Format
85 a,1,u,F1.0
86 ,2,w,F1.0
87 ,3,x,F1.0
88 ,4,y,F1.0
89 b,1,x,F1.0
90 ,2,y,F1.0
91 ,3,z,F1.0
92 c,1,u,F1.0
93 ,2,w,F1.0
94 ,3,x,F1.0
95 ,4,y,F1.0
96 ,5,z,F1.0
97 ])
98 AT_CLEANUP