IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 13127


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

Small changes to fix latest bugs.

Location:
trunk/psLib/test
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/imageops/tap_psImagePixelExtract.c

    r13123 r13127  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2007-05-02 04:14:33 $
     8*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2007-05-02 04:34:13 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    853853
    854854   
     855
     856
     857
     858
     859
     860
     861
     862
     863
     864
     865
     866
     867
     868
    855869    // testImageRowColF64()
    856870    {
     
    859873        psVector *empty = NULL;
    860874        psImage *image = NULL;
    861         psImage *emptyImage = NULL;
    862875   
    863876        image = psImageAlloc(3, 3, PS_TYPE_F64);
  • trunk/psLib/test/math/Makefile.am

    r13123 r13127  
    1313
    1414TEST_PROGS = \
    15         tap_psHist00 \
    16         tap_psHist01 \
    17         tap_psHist02 \
    18         tap_psHist03 \
     15        tap_psHistogram \
    1916        tap_psMD5 \
    2017        tap_psMatrix01 \
  • trunk/psLib/test/math/tap_psPolynomialEval3D.c

    r13124 r13127  
    44*  ORD and CHEB type polynomials.
    55*
    6 *  @version  $Revision: 1.6 $  $Name: not supported by cvs2svn $
    7 *  @date  $Date: 2007-05-02 04:20:06 $
     6*  @version  $Revision: 1.7 $  $Name: not supported by cvs2svn $
     7*  @date  $Date: 2007-05-02 04:34:13 $
    88*
    99* Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    121121    psLogSetFormat("HLNM");
    122122    psLogSetLevel(PS_LOG_INFO);
    123     plan_tests(44);
     123    plan_tests(48);
    124124
    125125
  • 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.