1 dnl PSPP - a program for statistical analysis.
2 dnl Copyright (C) 2017 Free Software Foundation, Inc.
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.
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.
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/>.
17 AT_BANNER([PRINT SPACE])
19 AT_SETUP([PRINT SPACE without arguments])
20 AT_DATA([print-space.sps], [dnl
21 DATA LIST NOTABLE/x 1.
30 AT_CHECK([pspp -O format=csv print-space.sps], [0], [dnl
38 AT_SETUP([PRINT SPACE with number])
39 AT_DATA([print-space.sps], [dnl
40 DATA LIST NOTABLE/x 1.
49 AT_CHECK([pspp -O format=csv print-space.sps], [0], [dnl
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.
67 PRINT OUTFILE='output.txt'/x.
68 PRINT SPACE OUTFILE='output.txt'.
71 AT_CHECK([pspp -O format=csv print-space.sps])
72 AT_CHECK([cat output.txt], [0], [dnl
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.
88 PRINT OUTFILE='output.txt'/x.
89 PRINT SPACE OUTFILE='output.txt' 2.
92 AT_CHECK([pspp -O format=csv print-space.sps])
93 AT_CHECK([cat output.txt], [0], [dnl