Add copyright and licence notices to files which lack them.
[pspp] / tests / language / utilities / date.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([USE])
17
18 AT_SETUP([USE ALL])
19 AT_DATA([use.sps], [dnl
20 data list notable /X 1-2.
21 begin data.
22 1
23 2
24 3
25 4
26 5
27 6
28 7
29 8
30 9
31 10
32 end data.
33 use all.
34 list.
35 ])
36 AT_CHECK([pspp -o pspp.csv use.sps])
37 AT_CHECK([cat pspp.csv], [0], [dnl
38 Table: Data List
39 X
40 1
41 2
42 3
43 4
44 5
45 6
46 7
47 8
48 9
49 10
50 ])
51 AT_CLEANUP