Add copyright and licence notices to files which lack them.
[pspp] / tests / language / expressions / parse.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([expression parsing])
17
18 AT_SETUP([parse expression with unknown variable crash])
19 AT_DATA([parse.sps], [dnl
20 INPUT PROGRAM.
21 LOOP c=1 to 10.
22 COMPUTE var1=NORMAL(100).
23 END CASE.
24 END LOOP.
25 END FILE.
26 END INPUT PROGRAM.
27
28
29 IF ( y > 0 ) .
30 COMPUTE x=y.
31 END IF.
32 ])
33 AT_CHECK([pspp -O format=csv parse.sps], [1], [dnl
34 parse.sps:10: error: IF: Unknown identifier y.
35
36 parse.sps:11: error: Stopping syntax file processing here to avoid a cascade of dependent command failures.
37 ])
38 AT_CLEANUP
39
40 AT_SETUP([parse expression with invalid logical expression])
41 AT_DATA([parse.sps], [dnl
42 INPUT PROGRAM.
43 LOOP c=1 to 10.
44 COMPUTE var1=NORMAL(100).
45 END CASE.
46 END LOOP.
47 END FILE.
48 END INPUT PROGRAM.
49
50 SELECT IF 2.
51 ])
52 AT_CHECK([pspp -O format=csv parse.sps], [1], [dnl
53 "parse.sps:9: error: SELECT IF: A logical expression was found to have a value other than 0 (false), 1 (true), or the system-missing value.  The result was forced to 0."
54 ])
55 AT_CLEANUP