projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
faef245
)
MATRIX: Update EVAL test to avoid failure on i386.
author
Ben Pfaff
<blp@cs.stanford.edu>
Thu, 16 Dec 2021 04:20:48 +0000
(20:20 -0800)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Thu, 16 Dec 2021 04:20:48 +0000
(20:20 -0800)
The i386 buildbot produced different precision for the eigenvalues
(integers rather than almost-integers), which isn't a significant
difference. This commit should avoid the problem.
tests/language/stats/matrix.at
patch
|
blob
|
history
diff --git
a/tests/language/stats/matrix.at
b/tests/language/stats/matrix.at
index add4cae7453b84cd59ce2f9214ed87c7fc9934c2..557e8c597e79044f635b498fdcb5ccaf747d6719 100644
(file)
--- a/
tests/language/stats/matrix.at
+++ b/
tests/language/stats/matrix.at
@@
-1794,7
+1794,7
@@
AT_CLEANUP
AT_SETUP([MATRIX - EVAL EXP GINV GRADE GSCH])
AT_DATA([matrix.sps], [dnl
MATRIX.
-PRINT EVAL({2, 0, 0; 0, 3, 4; 0, 4, 9}).
+PRINT EVAL({2, 0, 0; 0, 3, 4; 0, 4, 9})
/FORMAT=F5.2
.
PRINT EXP({2, 3; 4, 5})/FORMAT F5.2.
@@
-1820,9
+1820,9
@@
END MATRIX.
])
AT_CHECK([pspp matrix.sps], [1], [dnl
EVAL({2, 0, 0; 0, 3, 4; 0, 4, 9})
- 11.00
00000000
- 2.00
00000000
- 1.00
00000000
+ 11.00
+ 2.00
+ 1.00
EXP({2, 3; 4, 5})
7.39 20.09