Merge remote-tracking branch 'origin/master' into sheet
[pspp] / tests / language / xforms / sample.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([SAMPLE])
18
19 AT_SETUP([SAMPLE])
20 AT_DATA([sample.sps], [dnl
21 set seed=3
22
23 data list notable /A 1-2.
24 begin data.
25 1
26 2
27 3
28 4
29 5
30 6
31 7
32 8
33 9
34 10
35 end data.
36 sample .5.
37 list.
38 ])
39 AT_CHECK([pspp -o pspp.csv sample.sps])
40 AT_CAPTURE_FILE([pspp.csv])
41 AT_CHECK(
42   [n=0
43    while read line; do
44      n=`expr $n + 1`
45      case $line in # (
46        "Table: Data List" | A | [[0-9]] | 10) ;; # (
47        *) echo $line; exit 1;
48      esac
49    done < pspp.csv
50    if test $n -ge 11; then exit 1; fi
51   ])
52 AT_CLEANUP