Changed the generation of the test data, so that it's a lot faster.
[pspp-builds.git] / tests / bugs / computebug.stat
1 DATA LIST LIST
2  /A (A161)
3  B (A3).
4
5 BEGIN DATA
6 abc   def
7 ghi   jkl
8 END DATA.
9
10 COMPUTE A=upcase(A).
11 EXECUTE.
12 LIST.
13
14