tests/chart.at: -O format=csv changed to -o pspp.txt
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 7 Feb 2015 13:13:24 +0000 (14:13 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 7 Feb 2015 13:20:17 +0000 (14:20 +0100)
If no output file is specified, no charts get generated.  Since these
tests are "no crash only" tests, we want to exercise as much code as
possible

tests/output/charts.at

index 0b951845d8157067c58d58d84ce9b443b2673c7a..3bc8837f563a52c45c8b315fbc7e5f8f67509996 100644 (file)
@@ -33,7 +33,7 @@ examine x y by a
        .
 ])
 
-AT_CHECK([pspp -O format=csv charts.sps], [0], [ignore])
+AT_CHECK([pspp -o pspp.txt charts.sps], [0], [ignore])
 
 AT_CLEANUP
 
@@ -85,7 +85,7 @@ ROC /fred bert charlie by group (0)
 
 ])
 
-AT_CHECK([pspp -O format=csv roc.sps], [0], [ignore])
+AT_CHECK([pspp -o pspp.txt roc.sps], [0], [ignore])
 
 AT_CLEANUP
 
@@ -115,7 +115,7 @@ factor /variables = all
 
 ])
 
-AT_CHECK([pspp -O format=csv scree.sps], [0], [ignore])
+AT_CHECK([pspp -o pspp.txt scree.sps], [0], [ignore])
 
 AT_CLEANUP
 
@@ -152,7 +152,7 @@ frequencies pos neg pn
 
 
 dnl The --testing-mode flag is important!!
-AT_CHECK([pspp --testing-mode -O format=csv histogram.sps], [0], [ignore])
+AT_CHECK([pspp --testing-mode -o pspp.txt histogram.sps], [0], [ignore])
 
 AT_CLEANUP
 
@@ -189,6 +189,6 @@ FREQUENCIES /VARIABLES=religion nationality /BARCHART /PIECHART.
 ])
 
 
-AT_CHECK([pspp  -O format=csv xxx.sps], [0], [ignore])
+AT_CHECK([pspp  -o pspp.txt xxx.sps], [0], [ignore])
 
 AT_CLEANUP