Index: /trunk/psLib/test/FullUnitTest
===================================================================
--- /trunk/psLib/test/FullUnitTest	(revision 730)
+++ /trunk/psLib/test/FullUnitTest	(revision 731)
@@ -19,6 +19,6 @@
 #  RETURN : integer number of tests which failed
 #
-#  $Revision: 1.3 $  $Name: not supported by cvs2svn $
-#  $Date: 2004-05-07 22:10:50 $
+#  $Revision: 1.4 $  $Name: not supported by cvs2svn $
+#  $Date: 2004-05-19 01:57:05 $
 #
 #  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -538,5 +538,9 @@
        s/\s+\d+:\d+:\d+\w/ <TIME> /;
        s/\|[\w\.\-\_]+\|/<HOST> |/;
-       print MODFILE ($_);
+       # Filter lines with *** malloc.  This is an artifact of Mac testing of
+       # memory functions
+       if ( ! m/\*\*\*\smalloc/ ) {
+          print MODFILE ($_);
+       }
    }
    # Close mod file
@@ -554,5 +558,9 @@
        s/\s+\d+:\d+:\d+\w/ <TIME> /;
        s/\|[\w\.\-\_]+\|/<HOST> |/;
-       print MODFILE ($_);
+       # Filter lines with *** malloc.  This is an artifact of Mac testing of
+       # memory functions
+       if ( ! m/\*\*\*\smalloc/ ) {
+          print MODFILE ($_);
+       }
    }
    # Close mod file
Index: /trunk/psLib/test/runTest
===================================================================
--- /trunk/psLib/test/runTest	(revision 730)
+++ /trunk/psLib/test/runTest	(revision 731)
@@ -30,5 +30,5 @@
 #
 #  $Revison:  $  $Name: not supported by cvs2svn $
-#  $Date: 2004-05-10 20:00:16 $
+#  $Date: 2004-05-19 01:57:05 $
 #
 #  Copyright 2004 Maui High Performance Computering Center, University of Hawaii
@@ -112,5 +112,9 @@
             s/\s+\d+:\d+:\d+\w/ <TIME> /;
             s/\|[\w\.\-\_]+\|/<HOST> |/;
-            print MODFILE ($_);
+            # Filter lines with malloc.  This is an artifact of memory testing
+            # with the Mac testbed
+            if ( ! m/\*\*\*\smalloc/ ) {
+               print MODFILE ($_);
+            }
         }
         # Close mod file
@@ -128,5 +132,9 @@
             s/\s+\d+:\d+:\d+\w/ <TIME> /;
             s/\|[\w\.\-\_]+\|/<HOST> |/;
-            print MODFILE ($_);
+            # Filter lines with malloc.  This is an artifact of memory testing
+            # with the Mac testbed
+            if ( ! m/\*\*\*\smalloc/ ) {
+               print MODFILE ($_);
+            }
         }
         # Close mod file
