IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 7, 2008, 1:12:13 PM (18 years ago)
Author:
eugene
Message:

various test fixes and cleanups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/math/tap_psPolyFit2D.c

    r13337 r17567  
    424424            psMemId id = psMemGetId();
    425425            bool rc = psVectorFitPolynomial2D(myPoly, mask, MASK_VALUE, f, fErr, xS32, y);
    426             ok(rc == false, "psVectorFitPolynomial2D() returned FALSE: Set x vector to incorrect type");
     426            ok(rc == true, "psVectorFitPolynomial2D() returned TRUE: x vector may be S32");
    427427            ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
    428428        }
     
    433433            psMemId id = psMemGetId();
    434434            bool rc = psVectorFitPolynomial2D(myPoly, mask, MASK_VALUE, f, fErr, x, yS32);
    435             ok(rc == false, "psVectorFitPolynomial2D() returned FALSE: Set y vector to incorrect type");
     435            ok(rc == true, "psVectorFitPolynomial2D() returned TRUE: y vector may be S32");
    436436            ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
    437437        }
Note: See TracChangeset for help on using the changeset viewer.