X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Flanguage%2Fdictionary%2Fvariable-display.at;h=c42fc629e25a42b504d37d97c68da65642fb79c2;hb=refs%2Fbuilds%2F20140213030508%2Fpspp;hp=ef545d9d16ed3933b0115e015fd10a52cf93aca8;hpb=79100bdd30230890345c1c5a09ae57a19c1e408b;p=pspp diff --git a/tests/language/dictionary/variable-display.at b/tests/language/dictionary/variable-display.at index ef545d9d16..c42fc629e2 100644 --- a/tests/language/dictionary/variable-display.at +++ b/tests/language/dictionary/variable-display.at @@ -6,7 +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. +VARIABLE ROLE /TARGET x /BOTH y /NONE z. DISPLAY DICTIONARY. ]) AT_CHECK([pspp -o pspp.csv var-display.sps]) @@ -14,17 +14,17 @@ AT_CHECK([cat pspp.csv], [0], [dnl Variable,Description,,Position x,Format: F8.2,,1 ,Measure: Scale,, -,Role: Input,, +,Role: Output,, ,Display Alignment: Left,, ,Display Width: 10,, y,Format: F8.2,,2 ,Measure: Ordinal,, -,Role: Output,, +,Role: Both,, ,Display Alignment: Right,, ,Display Width: 12,, z,Format: F8.2,,3 ,Measure: Nominal,, -,Role: Both,, +,Role: None,, ,Display Alignment: Center,, ,Display Width: 14,, ])