IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 18, 2004, 3:57:05 PM (22 years ago)
Author:
evanalst
Message:

Add additional filter on stderr/stdout files to remove Darwin(Mac OS X)
artifact while testing psMemory functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/FullUnitTest

    r607 r731  
    1919#  RETURN : integer number of tests which failed
    2020#
    21 #  $Revision: 1.3 $  $Name: not supported by cvs2svn $
    22 #  $Date: 2004-05-07 22:10:50 $
     21#  $Revision: 1.4 $  $Name: not supported by cvs2svn $
     22#  $Date: 2004-05-19 01:57:05 $
    2323#
    2424#  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    538538       s/\s+\d+:\d+:\d+\w/ <TIME> /;
    539539       s/\|[\w\.\-\_]+\|/<HOST> |/;
    540        print MODFILE ($_);
     540       # Filter lines with *** malloc.  This is an artifact of Mac testing of
     541       # memory functions
     542       if ( ! m/\*\*\*\smalloc/ ) {
     543          print MODFILE ($_);
     544       }
    541545   }
    542546   # Close mod file
     
    554558       s/\s+\d+:\d+:\d+\w/ <TIME> /;
    555559       s/\|[\w\.\-\_]+\|/<HOST> |/;
    556        print MODFILE ($_);
     560       # Filter lines with *** malloc.  This is an artifact of Mac testing of
     561       # memory functions
     562       if ( ! m/\*\*\*\smalloc/ ) {
     563          print MODFILE ($_);
     564       }
    557565   }
    558566   # Close mod file
Note: See TracChangeset for help on using the changeset viewer.