Add copyright and licence notices to files which lack them.
[pspp] / tests / language / utilities / show.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([SHOW])
17
18 AT_SETUP([SHOW N])
19
20 AT_DATA([show.sps], [dnl
21 DATA LIST LIST NOTABLE /x.
22 BEGIN DATA.
23 1
24 2
25 3
26 END DATA.
27
28 SHOW N.
29 ])
30
31 AT_CHECK([pspp -O format=csv show.sps], [0], [dnl
32 show.sps:8: note: SHOW: N is 3.
33 ])
34
35 AT_CLEANUP
36
37
38 AT_SETUP([SHOW N empty])
39
40 AT_DATA([shown-empty.sps], [dnl
41 SHOW N.
42 ])
43
44 AT_CHECK([pspp -O format=csv shown-empty.sps], [0], [dnl
45 shown-empty.sps:1: note: SHOW: N is Unknown.
46 ])
47
48 AT_CLEANUP
49