IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 731


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.

Location:
trunk/psLib/test
Files:
2 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
  • 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.