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