Index: trunk/psModules/test/tst_pmMaskBadPixels.c
===================================================================
--- trunk/psModules/test/tst_pmMaskBadPixels.c	(revision 2951)
+++ trunk/psModules/test/tst_pmMaskBadPixels.c	(revision 4770)
@@ -17,6 +17,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-11 01:30:16 $
+ *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-08-16 01:10:36 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -87,4 +87,5 @@
 int main(int argc, char* argv[])
 {
+    psLogSetFormat("HLNM");
     return !runTestSuite(stderr, "Test Point Driver", tests, argc, argv);
 }
@@ -96,6 +97,6 @@
     CREATE_AND_SET_IMAGE(inImage1,F64,0,50,50);
     CREATE_AND_SET_IMAGE(mask1,U8,0,50,50)
-    //    psReadout *inReadout = psReadoutAlloc(0, 0, inImage1);
-    psReadout *inReadout = psReadoutAlloc();
+    //    pmReadout *inReadout = pmReadoutAlloc(0, 0, inImage1);
+    pmReadout *inReadout = pmReadoutAlloc(NULL);
     inReadout->image = inImage1;
     mask1->data.PS_TYPE_MASK_DATA[24][24]=1;
@@ -114,6 +115,6 @@
     CREATE_AND_SET_IMAGE(inImage2,F64,150.0,50,50);
     CREATE_AND_SET_IMAGE(mask2,U8,0,50,50)
-    //    psReadout *inReadout2 = psReadoutAlloc(0, 0, inImage2);
-    psReadout *inReadout2 = psReadoutAlloc();
+    //    pmReadout *inReadout2 = pmReadoutAlloc(0, 0, inImage2);
+    pmReadout *inReadout2 = pmReadoutAlloc(NULL);
     inReadout2->image = inImage2;
     PRINT_MATRIX(mask2, U8, "Data mask:");
@@ -131,6 +132,6 @@
     CREATE_AND_SET_IMAGE(inImage3,F64,50.0,50,50);
     CREATE_AND_SET_IMAGE(mask3,U8,0,50,50)
-    //    psReadout *inReadout3 = psReadoutAlloc(0, 0, inImage3);
-    psReadout *inReadout3 = psReadoutAlloc();
+    //    pmReadout *inReadout3 = pmReadoutAlloc(0, 0, inImage3);
+    pmReadout *inReadout3 = pmReadoutAlloc(NULL);
     inReadout3->image = inImage3;
     mask3->data.PS_TYPE_MASK_DATA[24][24]=1;
@@ -152,6 +153,6 @@
     CREATE_AND_SET_IMAGE(mask4,U8,0,50,50)
     CREATE_AND_SET_IMAGE(mask4i,U8,0,50,50)
-    //    psReadout *inReadout4 = psReadoutAlloc(0, 0, inImage4);
-    psReadout *inReadout4 = psReadoutAlloc();
+    //    pmReadout *inReadout4 = pmReadoutAlloc(0, 0, inImage4);
+    pmReadout *inReadout4 = pmReadoutAlloc(NULL);
     inReadout4->image = inImage4;
     inReadout4->mask = mask4i;
@@ -170,6 +171,6 @@
     // Test E - Attempt to use null mask
     CREATE_AND_SET_IMAGE(inImage5,F64,50.0,50,50);
-    //    psReadout *inReadout5 = psReadoutAlloc(0, 0, inImage5);
-    psReadout *inReadout5 = psReadoutAlloc();
+    //    pmReadout *inReadout5 = pmReadoutAlloc(0, 0, inImage5);
+    pmReadout *inReadout5 = pmReadoutAlloc(NULL);
     inReadout5->image = inImage5;
     pmMaskBadPixels(inReadout5, NULL, 0, 100.0, 1, 10);
@@ -183,6 +184,6 @@
     // Test F - Attempt tp use null input image
     CREATE_AND_SET_IMAGE(mask6,U8,0,50,50)
-    //    psReadout *inReadout6 = psReadoutAlloc(0, 0, NULL);
-    psReadout *inReadout6 = psReadoutAlloc();
+    //    pmReadout *inReadout6 = pmReadoutAlloc(0, 0, NULL);
+    pmReadout *inReadout6 = pmReadoutAlloc(NULL);
     inReadout6->mask = mask6;
     pmMaskBadPixels(inReadout6, mask6, 0, 100.0, 1, 10);
@@ -198,6 +199,6 @@
     CREATE_AND_SET_IMAGE(mask7,U8,0,50,50)
     CREATE_AND_SET_IMAGE(mask7i,U8,0,50,50)
-    //    psReadout *inReadout7 = psReadoutAlloc(0, 0, inImage7);
-    psReadout *inReadout7 = psReadoutAlloc();
+    //    pmReadout *inReadout7 = pmReadoutAlloc(0, 0, inImage7);
+    pmReadout *inReadout7 = pmReadoutAlloc(NULL);
     inReadout7->image = inImage7;
     inReadout7->mask = mask7i;
@@ -215,6 +216,6 @@
     CREATE_AND_SET_IMAGE(mask8,U8,0,50,50)
     CREATE_AND_SET_IMAGE(mask8i,U8,0,60,60)
-    //    psReadout *inReadout8 = psReadoutAlloc(0, 0, inImage8);
-    psReadout *inReadout8 = psReadoutAlloc();
+    //    pmReadout *inReadout8 = pmReadoutAlloc(0, 0, inImage8);
+    pmReadout *inReadout8 = pmReadoutAlloc(NULL);
     inReadout8->image = inImage8;
     inReadout8->mask = mask8i;
@@ -232,6 +233,6 @@
     CREATE_AND_SET_IMAGE(mask9,U8,0,50,50)
     CREATE_AND_SET_IMAGE(mask9i,U8,0,50,50)
-    //    psReadout *inReadout9 = psReadoutAlloc(0, 0, inImage9);
-    psReadout *inReadout9 = psReadoutAlloc();
+    //    pmReadout *inReadout9 = pmReadoutAlloc(0, 0, inImage9);
+    pmReadout *inReadout9 = pmReadoutAlloc(NULL);
     inReadout9->image = inImage9;
     inReadout9->mask = mask9i;
@@ -251,6 +252,6 @@
     CREATE_AND_SET_IMAGE(mask10,U8,0,50,50)
     CREATE_AND_SET_IMAGE(mask10i,U8,0,50,50)
-    //    psReadout *inReadout10 = psReadoutAlloc(0, 0, inImage10);
-    psReadout *inReadout10 = psReadoutAlloc();
+    //    pmReadout *inReadout10 = pmReadoutAlloc(0, 0, inImage10);
+    pmReadout *inReadout10 = pmReadoutAlloc(NULL);
     inReadout10->image = inImage10;
     inReadout10->mask = mask10i;
@@ -268,6 +269,6 @@
     CREATE_AND_SET_IMAGE(mask11,F64,0,50,50)
     CREATE_AND_SET_IMAGE(mask11i,U8,0,50,50)
-    //    psReadout *inReadout11 = psReadoutAlloc(0, 0, inImage11);
-    psReadout *inReadout11 = psReadoutAlloc();
+    //    pmReadout *inReadout11 = pmReadoutAlloc(0, 0, inImage11);
+    pmReadout *inReadout11 = pmReadoutAlloc(NULL);
     inReadout11->image = inImage11;
     inReadout11->mask = mask11i;
