X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fdata%2Fpor-file.at;h=b9e45ef4ee0f100e2aecc0e9731cdf0d7c10cbdc;hb=8fcedd27b1645a63f0080c7a3c0195e79b27ddec;hp=2020f0a03446ccede4530c97f0477963e0993ac7;hpb=bacb74cebdfe6915f503b133a89f0692d08bd464;p=pspp diff --git a/tests/data/por-file.at b/tests/data/por-file.at index 2020f0a034..b9e45ef4ee 100644 --- a/tests/data/por-file.at +++ b/tests/data/por-file.at @@ -1,3 +1,19 @@ +dnl PSPP - a program for statistical analysis. +dnl Copyright (C) 2017 Free Software Foundation, Inc. +dnl +dnl This program is free software: you can redistribute it and/or modify +dnl it under the terms of the GNU General Public License as published by +dnl the Free Software Foundation, either version 3 of the License, or +dnl (at your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, +dnl but WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +dnl GNU General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program. If not, see . +dnl AT_BANNER([portable files]) AT_SETUP([overwriting portable file]) @@ -88,35 +104,57 @@ DISPLAY DICTIONARY. LIST. ]) AT_CHECK([pspp -O format=csv import.sps], [0], [dnl -Variable,Description,,Position -VAR1,Format: F1.0,,1 -,Measure: Scale,, -,Display Alignment: Right,, -,Display Width: 8,, -,1,one, -VAR2,Format: F1.0,,2 -,Measure: Scale,, -,Display Alignment: Right,, -,Display Width: 8,, -,2,two, -VAR3,Format: F1.0,,3 -,Measure: Scale,, -,Display Alignment: Right,, -,Display Width: 8,, -,3,three, -VAR4,Format: F1.0,,4 -,Measure: Scale,, -,Display Alignment: Right,, -,Display Width: 8,, -,4,four, -VAR5,Format: F1.0,,5 -,Measure: Scale,, -,Display Alignment: Right,, -,Display Width: 8,, -,5,five, +Table: Variables +Name,Position,Label,Measurement Level,Role,Width,Alignment,Print Format,Write Format,Missing Values +VAR1,1,,Scale,Input,8,Right,F1.0,F1.0, +VAR2,2,,Scale,Input,8,Right,F1.0,F1.0, +VAR3,3,,Scale,Input,8,Right,F1.0,F1.0, +VAR4,4,,Scale,Input,8,Right,F1.0,F1.0, +VAR5,5,,Scale,Input,8,Right,F1.0,F1.0, + +Table: Value Labels +Variable Value,,Label +VAR1,1,one +VAR2,2,two +VAR3,3,three +VAR4,4,four +VAR5,5,five Table: Data List VAR1,VAR2,VAR3,VAR4,VAR5 1,2,3,4,5 ]) +AT_DATA([sys-file-info.sps], [SYSFILE INFO FILE='data.por' +]) +AT_CHECK([pspp -O format=csv sys-file-info.sps | sed '/Encoding/d +/Integer Format/d +/Real Format/d +/Created/d +/Product/d +'], [0], [dnl +Table: File Information +File,data.por +Label, +Variables,5 +Cases,Unknown +Type,SPSS Portable File +Weight,Not weighted +Compression,None + +Table: Variables +Name,Position,Label,Measurement Level,Role,Width,Alignment,Print Format,Write Format,Missing Values +VAR1,1,,Scale,Input,8,Right,F1.0,F1.0, +VAR2,2,,Scale,Input,8,Right,F1.0,F1.0, +VAR3,3,,Scale,Input,8,Right,F1.0,F1.0, +VAR4,4,,Scale,Input,8,Right,F1.0,F1.0, +VAR5,5,,Scale,Input,8,Right,F1.0,F1.0, + +Table: Value Labels +Variable Value,,Label +VAR1,1,one +VAR2,2,two +VAR3,3,three +VAR4,4,four +VAR5,5,five +]) AT_CLEANUP