X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fcommand%2Fsysfile-info.sh;h=ceafcf53fbbec19107b6ead01781d30d400a6b5d;hb=46e213d759e32e607cc2c04c6feb75809572d0cf;hp=bc11fa3a20ad6120b45901fd57d79995c7255158;hpb=14aac9fe7a7efbb6c9bded2ed5969a643cb76645;p=pspp diff --git a/tests/command/sysfile-info.sh b/tests/command/sysfile-info.sh index bc11fa3a20..ceafcf53fb 100755 --- a/tests/command/sysfile-info.sh +++ b/tests/command/sysfile-info.sh @@ -9,7 +9,7 @@ TESTFILE=$TEMPDIR/`basename $0`.sps if [ -z "$top_builddir" ] ; then top_builddir=. ; fi if [ -z "$top_srcdir" ] ; then top_srcdir=. ; fi top_builddir=`cd $top_builddir; pwd` -PSPP=$top_builddir/src/ui/terminal/pspp +PSPP=$top_builddir/src/ui/terminal/pspp$EXEEXT # ensure that top_srcdir is absolute top_srcdir=`cd $top_srcdir; pwd` @@ -74,47 +74,38 @@ if [ $? -ne 0 ] ; then no_result ; fi activity="run program" -$SUPERVISOR $PSPP --testing-mode $TESTFILE +$SUPERVISOR $PSPP -o pspp.csv $TESTFILE if [ $? -ne 0 ] ; then no_result ; fi activity="filter output" -egrep -v '^(Created|Endian|Integer Format|Real Format): ' $TEMPDIR/pspp.list > $TEMPDIR/out-filtered +egrep -v '^(Created|Endian|Integer Format|Real Format):,' $TEMPDIR/pspp.csv > $TEMPDIR/out-filtered if [ $? -ne 0 ] ; then no_result ; fi activity="compare output" -perl -pi -e 's/^\s*$//g' $TEMPDIR/out-filtered -diff -b -w $TEMPDIR/out-filtered - << EOF -1.1 DATA LIST. Reading free-form data from INLINE. -+--------+------+ -|Variable|Format| -#========#======# -|x |F8.0 | -|name |A10 | -+--------+------+ -2.1 SYSFILE INFO. -File: pro.sav -Label: No label. -Variables: 2 -Cases: 3 -Type: System File. -Weight: Not weighted. -Mode: Compression on. -Charset: Unknown -+--------+-------------+---+ -|Variable|Description |Pos| -| | |iti| -| | |on | -#========#=============#===# -|x |Format: F8.2 | 1| -| |Measure: | | -| |Display | | -| |Display | | -+--------+-------------+---+ -|name |Format: A10 | 2| -| |Measure: | | -| |Display | | -| |Display | | -+--------+-------------+---+ +diff -c $TEMPDIR/out-filtered - << EOF +Table: Reading free-form data from INLINE. +Variable,Format +x,F8.0 +name,A10 + +File:,pro.sav +Label:,No label. +Variables:,2 +Cases:,3 +Type:,System File +Weight:,Not weighted. +Mode:,Compression on. +Charset:,Unknown + +Variable,Description,,Position +x,Format: F8.2,,1 +,Measure: Scale,, +,Display Alignment: Right,, +,Display Width: 8,, +name,Format: A10,,2 +,Measure: Nominal,, +,Display Alignment: Left,, +,Display Width: 10,, EOF if [ $? -ne 0 ] ; then fail ; fi