X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Foutput%2Fascii.at;h=df1263eb012b761daf611394b3766d8070677913;hb=5d8fa2ae8c6e7d890570585aedec66bd51630814;hp=3c9243e7d2b09bacea503881041f9f1c069d18dd;hpb=0d70eff1e5dcd89a73f09ce6bc999ccbec8234b5;p=pspp-builds.git diff --git a/tests/output/ascii.at b/tests/output/ascii.at index 3c9243e7..df1263eb 100644 --- a/tests/output/ascii.at +++ b/tests/output/ascii.at @@ -539,3 +539,47 @@ AT_CHECK([render-test --box=unicode input], [0], [dnl ╰─┴───╯ ]) AT_CLEANUP + +AT_SETUP([ASCII driver syntax printback]) +AT_DATA([ascii.sps], [dnl +SET PRINTBACK=ON. +DATA LIST LIST /x * y * a (a23). +BEGIN DATA. +1 11 One +2 22 Two +3 33 Three +END DATA. + +REGRESSION +/VARIABLES= a +/DEPENDENT= x y +/STATISTICS=COEFF R ANOVA. +]) +AT_CHECK([pspp ascii.sps], [1], [dnl +SET PRINTBACK=ON. + +DATA LIST LIST /x * y * a (a23). + +Reading free-form data from INLINE. ++--------+------+ +|Variable|Format| +#========#======# +|x |F8.0 | +|y |F8.0 | +|a |A23 | ++--------+------+ + +BEGIN DATA. +1 11 One +2 22 Two +3 33 Three +END DATA. + +REGRESSION +/VARIABLES= a +/DEPENDENT= x y +/STATISTICS=COEFF R ANOVA. + +ascii.sps:12: error: REGRESSION: REGRESSION requires numeric variables. +]) +AT_CLEANUP