Merge remote-tracking branch 'origin/master' into sheet
[pspp] / tests / language / data-io / file-handle.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([FILE HANDLE])
18
19 AT_SETUP([FILE HANDLE])
20 AT_DATA([wiggle.txt], [dnl
21 1
22 2
23 5
24 109
25 ])
26 AT_DATA([file-handle.sps], [dnl
27 FILE HANDLE myhandle /NAME='wiggle.txt'.
28 DATA LIST LIST FILE=myhandle /x *.
29 LIST.
30 ])
31 AT_CHECK([pspp -O format=csv file-handle.sps], [0], [dnl
32 Table: Reading free-form data from myhandle.
33 Variable,Format
34 x,F8.0
35
36 Table: Data List
37 x
38 1.00
39 2.00
40 5.00
41 109.00
42 ])
43 AT_CLEANUP
44