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/detrend_norm_exp.pl

    r11394 r11455  
    7272        run(command => $command, verbose => 1);
    7373    unless ($success) {
    74         $error_code = $error_code >> 8;
     74        $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
    7575        &my_die("Unable to perform ppImage: $error_code", $det_id, $iter, $error_code);
    7676    }
     
    168168        run(command => $command, verbose => 1);
    169169    unless ($success) {
    170         $error_code = $error_code >> 8;
     170        $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
    171171        &my_die("Unable to perform dettool -addnormalizedexp: $error_code", $det_id, $iter, $error_code);
    172172    }
Note: See TracChangeset for help on using the changeset viewer.