IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11685


Ignore:
Timestamp:
Feb 7, 2007, 12:50:18 PM (19 years ago)
Author:
gusciora
Message:

Fixed small compiler errors due to new compile flags.

Location:
trunk/psLib/test
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/fft/tap_psImageFFT.c

    r11439 r11685  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-01-30 21:32:56 $
     8 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2007-02-07 22:50:18 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    529529        psU32 n = 64;
    530530        GENIMAGE(img,m,n,C32, row + I * col);
    531         psImage* img2 = psImageReal(img2,img);
     531        psImage* img2 = psImageReal(NULL,img);
    532532        ok(img2 != NULL, "psImageReal returned non-NULL");
    533533        skip_start(img2 == NULL, 4, "Skipping tests because psImageReal() returned NULL");
  • trunk/psLib/test/imageops/tap_psImagePixelManip.c

    r11398 r11685  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-01-30 00:13:01 $
     8 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2007-02-07 22:50:18 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    155155
    156156
    157         psF64 min;
    158         psF64 max;
     157        psF64 min=0.0;
     158        psF64 max=0.0;
    159159        psS32 retVal;
    160160        psImage *img = NULL;
  • trunk/psLib/test/math/tap_psMatrix07.c

    r10816 r11685  
    1717 *  @author  Ross Harman, MHPCC
    1818 *
    19  *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    20  *  @date  $Date: 2006-12-20 20:02:29 $
     19 *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     20 *  @date  $Date: 2007-02-07 22:50:18 $
    2121 *
    2222 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    204204        psVector *v1 = (psVector*)psVectorAlloc(3, PS_TYPE_F64);
    205205        ok(psMatrixToVector(v1, badImage) == NULL, "psMatrixToVector() returned NULL with improper sizes");
    206         psFree(badImage)
    207         psFree(v1)
     206        psFree(badImage);
     207        psFree(v1);
    208208        ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
    209209    }
     
    216216        psVector *v1_32 = (psVector*)psVectorAlloc(3, PS_TYPE_F32);
    217217        ok(psMatrixToVector(v1_32, badImage_32) == NULL, "psMatrixToVector() returned NULL with improper sizes");
    218         psFree(badImage_32)
    219         psFree(v1_32)
     218        psFree(badImage_32);
     219        psFree(v1_32);
    220220        ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
    221221    }
  • trunk/psLib/test/math/tap_psStats07.c

    r11265 r11685  
    307307    // We will use this later in determining if the clipped stats are correct.
    308308    //
    309     psF32 sampleMean;
    310     psF32 sampleStdev;
    311     psF32 sampleMedian;
    312     psF32 sampleLQ;
    313     psF32 sampleUQ;
     309    psF32 sampleMean=0.0;
     310    psF32 sampleStdev=0.0;
     311    psF32 sampleMedian=0.0;
     312    psF32 sampleLQ=0.0;
     313    psF32 sampleUQ=0.0;
    314314    if (expectedRC == true) {
    315315        psStats *myStats = psStatsAlloc(PS_STAT_SAMPLE_MEAN | PS_STAT_SAMPLE_STDEV | PS_STAT_SAMPLE_MEDIAN | PS_STAT_SAMPLE_QUARTILE);
  • trunk/psLib/test/math/tap_psStats09.c

    r11265 r11685  
    276276    // We will use this later in determining if the clipped stats are correct.
    277277    //
    278     psF32 sampleMean;
    279     psF32 sampleStdev;
     278    psF32 sampleMean=0.0;
     279    psF32 sampleStdev=0.0;
    280280    if (expectedRC == true) {
    281281        psStats *myStats = psStatsAlloc(PS_STAT_SAMPLE_MEAN | PS_STAT_SAMPLE_STDEV);
  • trunk/psLib/test/sys/tap_psConfigure.c

    r10810 r11685  
    1111 *  @author  Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    14  *  @date  $Date: 2006-12-18 19:18:46 $
     13 *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     14 *  @date  $Date: 2007-02-07 22:50:18 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121#include "tap.h"
    2222#include "pstap.h"
     23#include "string.h"
    2324
    2425
Note: See TracChangeset for help on using the changeset viewer.