Index: trunk/psLib/test/fft/tap_psImageFFT.c
===================================================================
--- trunk/psLib/test/fft/tap_psImageFFT.c	(revision 11684)
+++ trunk/psLib/test/fft/tap_psImageFFT.c	(revision 11685)
@@ -6,6 +6,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-30 21:32:56 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-02-07 22:50:18 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -529,5 +529,5 @@
         psU32 n = 64;
         GENIMAGE(img,m,n,C32, row + I * col);
-        psImage* img2 = psImageReal(img2,img);
+        psImage* img2 = psImageReal(NULL,img);
         ok(img2 != NULL, "psImageReal returned non-NULL");
         skip_start(img2 == NULL, 4, "Skipping tests because psImageReal() returned NULL");
Index: trunk/psLib/test/imageops/tap_psImagePixelManip.c
===================================================================
--- trunk/psLib/test/imageops/tap_psImagePixelManip.c	(revision 11684)
+++ trunk/psLib/test/imageops/tap_psImagePixelManip.c	(revision 11685)
@@ -6,6 +6,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2007-01-30 00:13:01 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2007-02-07 22:50:18 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -155,6 +155,6 @@
 
 
-        psF64 min;
-        psF64 max;
+        psF64 min=0.0;
+        psF64 max=0.0;
         psS32 retVal;
         psImage *img = NULL;
Index: trunk/psLib/test/math/tap_psMatrix07.c
===================================================================
--- trunk/psLib/test/math/tap_psMatrix07.c	(revision 11684)
+++ trunk/psLib/test/math/tap_psMatrix07.c	(revision 11685)
@@ -17,6 +17,6 @@
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2006-12-20 20:02:29 $
+ *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2007-02-07 22:50:18 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -204,6 +204,6 @@
         psVector *v1 = (psVector*)psVectorAlloc(3, PS_TYPE_F64);
         ok(psMatrixToVector(v1, badImage) == NULL, "psMatrixToVector() returned NULL with improper sizes");
-        psFree(badImage)
-        psFree(v1)
+        psFree(badImage);
+        psFree(v1);
         ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
     }
@@ -216,6 +216,6 @@
         psVector *v1_32 = (psVector*)psVectorAlloc(3, PS_TYPE_F32);
         ok(psMatrixToVector(v1_32, badImage_32) == NULL, "psMatrixToVector() returned NULL with improper sizes");
-        psFree(badImage_32)
-        psFree(v1_32)
+        psFree(badImage_32);
+        psFree(v1_32);
         ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
     }
Index: trunk/psLib/test/math/tap_psStats07.c
===================================================================
--- trunk/psLib/test/math/tap_psStats07.c	(revision 11684)
+++ trunk/psLib/test/math/tap_psStats07.c	(revision 11685)
@@ -307,9 +307,9 @@
     // We will use this later in determining if the clipped stats are correct.
     //
-    psF32 sampleMean;
-    psF32 sampleStdev;
-    psF32 sampleMedian;
-    psF32 sampleLQ;
-    psF32 sampleUQ;
+    psF32 sampleMean=0.0;
+    psF32 sampleStdev=0.0;
+    psF32 sampleMedian=0.0;
+    psF32 sampleLQ=0.0;
+    psF32 sampleUQ=0.0;
     if (expectedRC == true) {
         psStats *myStats = psStatsAlloc(PS_STAT_SAMPLE_MEAN | PS_STAT_SAMPLE_STDEV | PS_STAT_SAMPLE_MEDIAN | PS_STAT_SAMPLE_QUARTILE);
Index: trunk/psLib/test/math/tap_psStats09.c
===================================================================
--- trunk/psLib/test/math/tap_psStats09.c	(revision 11684)
+++ trunk/psLib/test/math/tap_psStats09.c	(revision 11685)
@@ -276,6 +276,6 @@
     // We will use this later in determining if the clipped stats are correct.
     //
-    psF32 sampleMean;
-    psF32 sampleStdev;
+    psF32 sampleMean=0.0;
+    psF32 sampleStdev=0.0;
     if (expectedRC == true) {
         psStats *myStats = psStatsAlloc(PS_STAT_SAMPLE_MEAN | PS_STAT_SAMPLE_STDEV);
Index: trunk/psLib/test/sys/tap_psConfigure.c
===================================================================
--- trunk/psLib/test/sys/tap_psConfigure.c	(revision 11684)
+++ trunk/psLib/test/sys/tap_psConfigure.c	(revision 11685)
@@ -11,6 +11,6 @@
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2006-12-18 19:18:46 $
+ *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2007-02-07 22:50:18 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -21,4 +21,5 @@
 #include "tap.h"
 #include "pstap.h"
+#include "string.h"
 
 
