Remove unneeded #includes.
[pspp] / tests / language / data-io / print-space.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([PRINT SPACE])
18
19 AT_SETUP([PRINT SPACE without arguments])
20 AT_DATA([print-space.sps], [dnl
21 DATA LIST NOTABLE/x 1.
22 BEGIN DATA.
23 1
24 2
25 END DATA.
26 PRINT/x.
27 PRINT SPACE.
28 EXECUTE.
29 ])
30 AT_CHECK([pspp -O format=csv print-space.sps], [0], [dnl
31 1 @&t@
32
33 2 @&t@
34
35 ])
36 AT_CLEANUP
37
38 AT_SETUP([PRINT SPACE with number])
39 AT_DATA([print-space.sps], [dnl
40 DATA LIST NOTABLE/x 1.
41 BEGIN DATA.
42 1
43 2
44 END DATA.
45 PRINT/x.
46 PRINT SPACE 2.
47 EXECUTE.
48 ])
49 AT_CHECK([pspp -O format=csv print-space.sps], [0], [dnl
50 1 @&t@
51
52
53 2 @&t@
54
55
56 ])
57 AT_CLEANUP
58
59 AT_SETUP([PRINT SPACE to file])
60 AT_CAPTURE_FILE([output.txt])
61 AT_DATA([print-space.sps], [dnl
62 DATA LIST NOTABLE/x 1.
63 BEGIN DATA.
64 1
65 2
66 END DATA.
67 PRINT OUTFILE='output.txt'/x.
68 PRINT SPACE OUTFILE='output.txt'.
69 EXECUTE.
70 ])
71 AT_CHECK([pspp -O format=csv print-space.sps])
72 AT_CHECK([cat output.txt], [0], [dnl
73  1 @&t@
74  @&t@
75  2 @&t@
76  @&t@
77 ])
78 AT_CLEANUP
79
80 AT_SETUP([PRINT SPACE to file with number])
81 AT_CAPTURE_FILE([output.txt])
82 AT_DATA([print-space.sps], [dnl
83 DATA LIST NOTABLE/x 1.
84 BEGIN DATA.
85 1
86 2
87 END DATA.
88 PRINT OUTFILE='output.txt'/x.
89 PRINT SPACE OUTFILE='output.txt' 2.
90 EXECUTE.
91 ])
92 AT_CHECK([pspp -O format=csv print-space.sps])
93 AT_CHECK([cat output.txt], [0], [dnl
94  1 @&t@
95  @&t@
96  @&t@
97  2 @&t@
98  @&t@
99  @&t@
100 ])
101 AT_CLEANUP
102
103 AT_SETUP([PRINT SPACE syntax errors])
104 AT_DATA([print-space.sps], [dnl
105 DATA LIST NOTABLE /x 1.
106 PRINT SPACE OUTFILE=**.
107 PRINT SPACE OUTFILE='out.txt' ENCODING=**.
108 PRINT SPACE **.
109 PRINT SPACE 1 'xyzzy'.
110 ])
111 AT_CHECK([pspp -O format=csv print-space.sps], [1], [dnl
112 "print-space.sps:2.21-2.22: error: PRINT SPACE: Syntax error expecting a file name or handle name.
113     2 | PRINT SPACE OUTFILE=**.
114       |                     ^~"
115
116 "print-space.sps:3.40-3.41: error: PRINT SPACE: Syntax error expecting string.
117     3 | PRINT SPACE OUTFILE='out.txt' ENCODING=**.
118       |                                        ^~"
119
120 "print-space.sps:4.13-4.14: error: PRINT SPACE: Syntax error parsing expression.
121     4 | PRINT SPACE **.
122       |             ^~"
123
124 "print-space.sps:5.15-5.21: error: PRINT SPACE: Syntax error expecting end of command.
125     5 | PRINT SPACE 1 'xyzzy'.
126       |               ^~~~~~~"
127 ])
128 AT_CLEANUP
129
130 AT_SETUP([PRINT SPACE evaluation errors])
131 AT_DATA([print-space.sps], [dnl
132 DATA LIST NOTABLE /x 1.
133 BEGIN DATA.
134 1
135 END DATA.
136 PRINT SPACE $SYSMIS.
137 PRINT SPACE -1.
138 EXECUTE.
139 ])
140 AT_CHECK([pspp -O format=csv print-space.sps], [0], [dnl
141 "print-space.sps:5.13-5.19: warning: EXECUTE: The expression on PRINT SPACE evaluated to the system-missing value.
142     5 | PRINT SPACE $SYSMIS.
143       |             ^~~~~~~"
144
145
146
147 "print-space.sps:6.13-6.14: warning: EXECUTE: The expression on PRINT SPACE evaluated to -1.
148     6 | PRINT SPACE -1.
149       |             ^~"
150
151
152 ])
153 AT_CLEANUP