start validating
[pspp] / tests / language / stats / ctables.at
index 6b1eb3ae08ef8e866d266517ec358d678d447734..72aac4bf850cda12edb10066ba1fb9b8e848e5c7 100644 (file)
@@ -1,9 +1,14 @@
 AT_BANNER([CTABLES])
 
 AT_SETUP([CTABLES parsing])
-AT_DATA([ctables.sps], [dnl
-DATA LIST LIST NOTABLE /x y z.
+AT_DATA([ctables.sps],
+[[DATA LIST LIST NOTABLE /x y z.
 CTABLES /TABLE=(x + y) > z.
-])
+CTABLES /TABLE=(x[c] + y[c]) > z.
+CTABLES /TABLE=(x + y) > z[c].
+CTABLES /TABLE=x BY y BY z.
+CTABLES /TABLE=x[c] [ROWPCT.COUNT] > y[c].
+CTABLES /TABLE=x[c] > y[c] [ROWPCT.COUNT].
+]])
 AT_CHECK([pspp ctables.sps])
 AT_CLEANUP
\ No newline at end of file