IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 1, 2007, 6:34:14 PM (19 years ago)
Author:
gusciora
Message:

Small changes to fix latest bugs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/types/tap_psPixels_all.c

    r13123 r13127  
    2121int main(void)
    2222{
    23     plan_tests(36);
     23    plan_tests(48);
    2424
    2525    //Tests for psPixels Functions
     
    273273        outImage = psPixelsToMask(outImage, p0, region, maskVal);
    274274        ok(outImage != NULL, "psPixelsToMask: return valid image for valid input.");
    275         ok(!psMemCheckLeaks(id, NULL, NULL, false), "no memory leaks");
    276     }
    277     psFree(outImage);
     275        psFree(outImage);
     276        ok(!psMemCheckLeaks(id, NULL, NULL, false), "no memory leaks");
     277    }
    278278
    279279
     
    321321
    322322
     323
     324
     325
     326
     327
     328
     329
     330
     331
     332
     333
     334
     335
     336
     337
    323338    //----------------------------------------------------------------------
    324339    // psPixelsConcatenate Tests
     
    340355        outPixels = psPixelsConcatenate(outPixels, p0);
    341356        ok(outPixels->n == 4 && fabs(outPixels->data[0].x - 1.1) < FLT_EPSILON &&
    342              fabs(outPixels->data[0].y - 1.2) < FLT_EPSILON ,
    343              "psPixelsConcatenate:  return copy of input pixels for NULL out input.");
     357           fabs(outPixels->data[0].y - 1.2) < FLT_EPSILON ,
     358          "psPixelsConcatenate:  return copy of input pixels for NULL out input.");
    344359        psFree(outPixels);
    345360        ok(!psMemCheckLeaks(id, NULL, NULL, false), "no memory leaks");
Note: See TracChangeset for help on using the changeset viewer.