c9d13a286106c73b986cf56ccbecb3cf9d04367d
[pspp] / tests / language / dictionary / leave.at
1 AT_BANNER([LEAVE])
2
3 AT_SETUP([LEAVE])
4 AT_DATA([leave.sps], [dnl
5 DATA LIST LIST NOTABLE/x y z.
6 LEAVE x y.
7 ])
8 AT_CHECK([pspp -O format=csv leave.sps])
9 AT_CLEANUP
10
11 AT_SETUP([LEAVE syntax errors])
12 AT_DATA([leave.sps], [dnl
13 DATA LIST LIST NOTABLE/x y z.
14 LEAVE **.
15 LEAVE x **.
16 ])
17 AT_DATA([insert.sps], [dnl
18 INSERT FILE='leave.sps' ERROR=IGNORE.
19 ])
20 AT_CHECK([pspp --testing-mode -O format=csv insert.sps], [1], [dnl
21 "leave.sps:2.7-2.8: error: LEAVE: Syntax error expecting variable name.
22     2 | LEAVE **.
23       |       ^~"
24
25 "leave.sps:3.9-3.10: error: LEAVE: Syntax error expecting end of command.
26     3 | LEAVE x **.
27       |         ^~"
28 ])
29 AT_CLEANUP