get_default_paper_size: Use access instead of fn_exists
[pspp] / tests / language / stats / graph.at
index f4b125b24eda71f344ae4bee8113c5762f5f3174..ae716a3b8d669a9b55f14b3eca7af5d8ad631469 100644 (file)
@@ -147,3 +147,19 @@ dnl Ignore output -- this is just a no-crash check.
 AT_CLEANUP
 
 
+AT_SETUP([GRAPH histogram with null data])
+AT_DATA([null-hist.sps], [dnl
+data list list /x *.
+begin data.
+1109 
+. 
+end data.
+
+graph 
+      /histogram = x.
+
+])
+
+AT_CHECK([pspp -o pspp.pdf null-hist.sps], [0], [ignore])
+dnl Ignore output -- this is just a no-crash check.
+AT_CLEANUP