72aac4bf850cda12edb10066ba1fb9b8e848e5c7
[pspp] / tests / language / stats / ctables.at
1 AT_BANNER([CTABLES])
2
3 AT_SETUP([CTABLES parsing])
4 AT_DATA([ctables.sps],
5 [[DATA LIST LIST NOTABLE /x y z.
6 CTABLES /TABLE=(x + y) > z.
7 CTABLES /TABLE=(x[c] + y[c]) > z.
8 CTABLES /TABLE=(x + y) > z[c].
9 CTABLES /TABLE=x BY y BY z.
10 CTABLES /TABLE=x[c] [ROWPCT.COUNT] > y[c].
11 CTABLES /TABLE=x[c] > y[c] [ROWPCT.COUNT].
12 ]])
13 AT_CHECK([pspp ctables.sps])
14 AT_CLEANUP