IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 14, 2004, 11:22:09 AM (22 years ago)
Author:
desonia
Message:

added check for the case in which a test generates a signal, e.g., an abort.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/psTest.c

    r958 r1029  
    6363
    6464    waitpid(child,&childReturn,0);
     65    if (WIFSIGNALED(childReturn)) {
     66        childReturn =  -WTERMSIG(childReturn);
     67    } else {
     68        childReturn = WEXITSTATUS(childReturn);
     69    }
    6570
    6671    if (childReturn != expectedReturn) {
Note: See TracChangeset for help on using the changeset viewer.