b453f1254658462e84a0305d3eba0df8652db40d
[pspp] / tests / language / lexer / q2c.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 AT_BANNER([q2c])
17
18 AT_SETUP([q2c enforces mandatory subcommands])
19 AT_DATA([q2c.sps], [dnl
20 DATA LIST LIST NOTABLE /x *.
21 BEGIN DATA.
22 1
23 2
24 3
25 END DATA.
26
27 EXAMINE.
28 ONEWAY.
29 CROSSTABS.
30 ])
31 AT_CHECK([pspp -O format=csv q2c.sps], [1], [dnl
32 q2c.sps:8.8: error: EXAMINE: Syntax error at end of command: expecting variable name.
33
34 q2c.sps:9.7: error: ONEWAY: Syntax error at end of command: expecting variable name.
35
36 q2c.sps:10: error: CROSSTABS: Required subcommand TABLES was not specified.
37 ])
38 AT_CLEANUP