X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Flanguage%2Fdictionary%2Fvariable-display.at;h=ef545d9d16ed3933b0115e015fd10a52cf93aca8;hb=79100bdd30230890345c1c5a09ae57a19c1e408b;hp=f4d76eb94b4851675057868ffddf6bb1b2682768;hpb=36a60796842701bb68a4c54a84853a1db63c9dde;p=pspp diff --git a/tests/language/dictionary/variable-display.at b/tests/language/dictionary/variable-display.at index f4d76eb94b..ef545d9d16 100644 --- a/tests/language/dictionary/variable-display.at +++ b/tests/language/dictionary/variable-display.at @@ -6,6 +6,7 @@ DATA LIST FREE /x y z. VARIABLE ALIGNMENT x (LEFT)/y (RIGHT)/z (CENTER). VARIABLE WIDTH x (10)/y (12)/z (14). VARIABLE LEVEL x (SCALE)/y (ORDINAL)/z (NOMINAL). +VARIABLE ROLE /INPUT x /TARGET y /BOTH z. DISPLAY DICTIONARY. ]) AT_CHECK([pspp -o pspp.csv var-display.sps]) @@ -13,14 +14,17 @@ AT_CHECK([cat pspp.csv], [0], [dnl Variable,Description,,Position x,Format: F8.2,,1 ,Measure: Scale,, +,Role: Input,, ,Display Alignment: Left,, ,Display Width: 10,, y,Format: F8.2,,2 ,Measure: Ordinal,, +,Role: Output,, ,Display Alignment: Right,, ,Display Width: 12,, z,Format: F8.2,,3 ,Measure: Nominal,, +,Role: Both,, ,Display Alignment: Center,, ,Display Width: 14,, ])