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

    r11321 r11455  
    102102        cache_run(command => $command, verbose => 1);
    103103    unless ($success) {
    104         $error_code = $error_code >> 8;
     104        $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
    105105        warn ("Unable to perform p0tool on exposure id $exptag: $error_code");
    106106        exit ($error_code);
     
    207207        cache_run(command => \@command, verbose => 1);
    208208    unless ($success) {
    209         $error_code = $error_code >> 8;
     209        $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
    210210        warn ("Unable to run phase0 update for $exptag: $error_code");
    211211        exit($error_code);
Note: See TracChangeset for help on using the changeset viewer.