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/runTest

    r632 r731  
    3030#
    3131#  $Revison:  $  $Name: not supported by cvs2svn $
    32 #  $Date: 2004-05-10 20:00:16 $
     32#  $Date: 2004-05-19 01:57:05 $
    3333#
    3434#  Copyright 2004 Maui High Performance Computering Center, University of Hawaii
     
    112112            s/\s+\d+:\d+:\d+\w/ <TIME> /;
    113113            s/\|[\w\.\-\_]+\|/<HOST> |/;
    114             print MODFILE ($_);
     114            # Filter lines with malloc.  This is an artifact of memory testing
     115            # with the Mac testbed
     116            if ( ! m/\*\*\*\smalloc/ ) {
     117               print MODFILE ($_);
     118            }
    115119        }
    116120        # Close mod file
     
    128132            s/\s+\d+:\d+:\d+\w/ <TIME> /;
    129133            s/\|[\w\.\-\_]+\|/<HOST> |/;
    130             print MODFILE ($_);
     134            # Filter lines with malloc.  This is an artifact of memory testing
     135            # with the Mac testbed
     136            if ( ! m/\*\*\*\smalloc/ ) {
     137               print MODFILE ($_);
     138            }
    131139        }
    132140        # Close mod file
Note: See TracChangeset for help on using the changeset viewer.