IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3225


Ignore:
Timestamp:
Feb 15, 2005, 9:46:51 AM (21 years ago)
Author:
desonia
Message:

removed check of make output (using only return value now).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/FullUnitTest

    r3127 r3225  
    1919#  RETURN : integer number of tests which failed
    2020#
    21 #  $Revision: 1.17 $  $Name: not supported by cvs2svn $
    22 #  $Date: 2005-02-04 22:49:37 $
     21#  $Revision: 1.18 $  $Name: not supported by cvs2svn $
     22#  $Date: 2005-02-15 19:46:51 $
    2323#
    2424#  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    246246        # Check the output of make for return value != 0 or any of the
    247247        # following words: FAILED, FAULT, ERROR, Not found, SIGNAL
    248         if (   ( $? != 0 )
    249             || m/FAILED/i
    250             || m/FAULT/i
    251             || m/\bERROR/i
    252             || m/Not found/i
    253             || m/SIGNAL/i )
    254         {
     248        if ( $? != 0 ) {
    255249
    256250            # Display the errored output of make if silent option not enabled
Note: See TracChangeset for help on using the changeset viewer.