Add copyright and licence notices to files which lack them.
[pspp] / tests / output / output.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([output drivers])
17
18 m4_define([OUTPUT_UNWRITABLE_DIR],
19   [AT_SETUP([output $1 to unwritable directory])
20    mkdir unwritable
21    chmod u-w unwritable
22    AT_SKIP_IF([: > unwritable/test])
23    AT_DATA([unwritable.sps], [dnl
24 data list /x 1.
25 begin data.
26 1
27 2
28 3
29 end data.
30 frequencies x/histogram.
31 ])
32    dnl PSPP will fail to create the output file.  Thus, the exit status is 
33    dnl non zero
34    AT_CHECK([cd unwritable && pspp -o pspp.$1 ../unwritable.sps], [1],
35             [ignore], [ignore])
36    AT_CLEANUP])
37
38 OUTPUT_UNWRITABLE_DIR([csv])
39 OUTPUT_UNWRITABLE_DIR([html])
40 OUTPUT_UNWRITABLE_DIR([odt])
41 OUTPUT_UNWRITABLE_DIR([pdf])
42 OUTPUT_UNWRITABLE_DIR([txt])