projects
/
pspp-builds.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Change the order of the reported NPAR values in two sample related tests.
[pspp-builds.git]
/
tests
/
language
/
utilities
/
date.at
1
AT_BANNER([USE])
2
3
AT_SETUP([USE ALL])
4
AT_DATA([use.sps], [dnl
5
data list notable /X 1-2.
6
begin data.
7
1
8
2
9
3
10
4
11
5
12
6
13
7
14
8
15
9
16
10
17
end data.
18
use all.
19
list.
20
])
21
AT_CHECK([pspp -o pspp.csv use.sps])
22
AT_CHECK([cat pspp.csv], [0], [dnl
23
Table: Data List
24
X
25
1
26
2
27
3
28
4
29
5
30
6
31
7
32
8
33
9
34
10
35
])
36
AT_CLEANUP