Fix erroneous subsitute by previous commit.
[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
17 AT_BANNER([expression parsing])
18
19 AT_SETUP([parse expression with unknown variable crash])
20 AT_DATA([parse.sps], [dnl
21 INPUT PROGRAM.
22 LOOP c=1 to 10.
23 COMPUTE var1=NORMAL(100).
24 END CASE.
25 END LOOP.
26 END FILE.
27 END INPUT PROGRAM.
28
29
30 IF ( y > 0 ) .
31 COMPUTE x=y.
32 END IF.
33 ])
34 AT_CHECK([pspp -O format=csv parse.sps], [1], [dnl
35 parse.sps:10: error: IF: Unknown identifier y.
36
37 parse.sps:11: error: Stopping syntax file processing here to avoid a cascade of dependent command failures.
38 ])
39 AT_CLEANUP
40
41 AT_SETUP([parse expression with invalid logical expression])
42 AT_DATA([parse.sps], [dnl
43 INPUT PROGRAM.
44 LOOP c=1 to 10.
45 COMPUTE var1=NORMAL(100).
46 END CASE.
47 END LOOP.
48 END FILE.
49 END INPUT PROGRAM.
50
51 SELECT IF 2.
52 ])
53 AT_CHECK([pspp -O format=csv parse.sps], [1], [dnl
54 "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."
55 ])
56 AT_CLEANUP