X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Flanguage%2Fstats%2Fgraph.at;h=f9daa69cbb2f89d53415021ca2777e7f6d506354;hb=d544788058262e65e71591348d9976a7fd792c97;hp=b08f9f26d9a52b4d540cfb669b888786313e584a;hpb=6eb8b4b61976de7a648fe8938ac5b6f5af58773c;p=pspp diff --git a/tests/language/stats/graph.at b/tests/language/stats/graph.at index b08f9f26d9..f9daa69cbb 100644 --- a/tests/language/stats/graph.at +++ b/tests/language/stats/graph.at @@ -307,4 +307,26 @@ GRAPH /BAR = MINIMUM(y) BY z BY y. AT_CHECK([pspp -o pspp.pdf barchart.sps], [0], [ignore]) dnl Ignore output -- this is just a no-crash check. +AT_CLEANUP + + + + + +AT_SETUP([GRAPH buggy syntax]) + +AT_DATA([barchart.sps], [dnl +data list notable list /x y z*. +begin data +1 1 3 +2 1 4 +10 2 4 +end data. + +GRAPH /BAR = MINIMUM({) BY z BY y. +]) + +AT_CHECK([pspp -o pspp.pdf barchart.sps], [1], [ignore]) +dnl Ignore output -- this is just a no-crash check. + AT_CLEANUP \ No newline at end of file