IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 30, 2007, 3:42:50 PM (19 years ago)
Author:
Paul Price
Message:

Core dumps weren't being caught as errors. Now they are identified as programming errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/phase2.pl

    r11442 r11455  
    9393        run(command => $command, verbose => 1);
    9494    unless ($success) {
    95         $error_code = $error_code >> 8;
     95        $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
    9696        &my_die("Unable to perform ppImage: $error_code", $exp_tag, $class_id, $error_code);
    9797    }
     
    137137        run(command => $command, verbose => 1);
    138138    unless ($success) {
    139         $error_code = $error_code >> 8;
     139        $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
    140140        warn("Unable to perform p2tool -addprocessedimfile: $error_code\n");
    141141        exit($error_code);
Note: See TracChangeset for help on using the changeset viewer.