docs
[pspp] / tests / data / mdd-file.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([MDD files])
18
19 AT_SETUP([write MDD file])
20 AT_KEYWORDS([SAVE GET system file])
21 AT_DATA([test.sps], [dnl
22 DATA LIST LIST NOTABLE / variable001 * variable002 * variable003 * variable004 * .
23 BEGIN DATA.
24     1.00     1.00    1.0     2.00
25     1.00     1.00    2.0    30.00
26     1.00     2.00    1.0     8.00
27     1.00     2.00    2.0    20.00
28     2.00     1.00    1.0     2.00
29     2.00     1.00    2.0    22.00
30     2.00     2.00    1.0     1.00
31     2.00     2.00    2.0     3.00
32 END DATA.
33
34 SAVE DATA COLLECTION /OUTFILE='test.sav' /METADATA='test.mdd'.
35 ])
36 AT_CHECK([pspp -o pspp.csv test.sps])
37 AT_CHECK([test -e test.sav])
38 AT_CHECK([test -e test.mdd])
39
40 if test $HAVE_XMLLINT = yes; then
41     AT_CHECK([$XMLLINT --format test.mdd], [0], [ignore])
42 fi
43 AT_CLEANUP