Wed 27 Mar 2013 05:37:18 AM UTC, original submission:
when i tried to make check, there were 2 expected failures.
i've checked the fntest.log, this is the result:
residue.m
z1 = 7.0372976777e6;
p1 = -3.1415926536e9;
p2 = -4.9964813512e8;
r1 = -(1 + z1/p1)/(1 - p1/p2)/p2/p1;
r2 = -(1 + z1/p2)/(1 - p2/p1)/p2/p1;
r3 = (1 + (p2 + p1)/p2/p1*z1)/p2/p1;
r4 = z1/p2/p1;
r = [r1; r2; r3; r4];
p = [p1; p2; 0; 0];
k = [];
e = [1; 1; 1; 2];
b = [1, z1];
a = [1, -(p1 + p2), p1*p2, 0, 0];
[br, ar] = residue (r, p, k, e);
assert (br, b, 1e-8);
assert (ar, a, 1e-8);
!!!!! known failure
assert (br,b,1e-8) expected
1.0000e+00 7.0373e+06
but got
7.0373e+06
Dimensions don't match
test.m
- xtest error("This test is known to fail")
!!!!! known failure
This test is known to fail
ho to fix that problems?
|