Enable the show value labels feature
[pspp] / tests / language / dictionary / delete-variables.at
1 AT_BANNER([DELETE VARIABLES])
2
3 dnl Checks for regressions against a crash reported in bug #38843.
4 AT_SETUP([DELETE VARIABLES with FILTER])
5 AT_DATA([delete-variables.sps], [dnl
6 DATA LIST LIST /a b.
7 BEGIN DATA.
8 1 3
9 4 6
10 7 9
11 END DATA.
12
13 FILTER BY b.
14 DELETE VARIABLES a.
15 LIST.
16 ])
17 AT_CHECK([pspp -O format=csv delete-variables.sps], [0], [dnl
18 Table: Reading free-form data from INLINE.
19 Variable,Format
20 a,F8.0
21 b,F8.0
22
23 Table: Data List
24 b
25 3.00
26 6.00
27 9.00
28 ])
29 AT_CLEANUP