Changeset 26528
- Timestamp:
- Jan 6, 2010, 5:04:27 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/tools/examine_burntool_pcontrol.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/examine_burntool_pcontrol.pl
r25562 r26528 17 17 print STDERR " status of the processing. On the OTA grid:\n"; 18 18 print STDERR " _ Blank chip\n"; 19 print STDERR " N Null/zero value for burntool_state. No burntool attempted.\n"; 20 print STDERR " O -1 value for burntool_state. Burntool is running.\n"; 21 print STDERR " E -2 value for burntool_state. Error!\n"; 19 print STDERR " O Null/zero value for burntool_state. No burntool attempted (yet).\n"; 20 print STDERR " P -1 value for burntool_state. Burntool is running.\n"; 21 print STDERR " E -2 value for burntool_state. Error! (modified raw pixels)\n"; 22 print STDERR " X -3 value for burntool_state. Burntool segfaulted on this chip.\n"; 22 23 print STDERR " B Current version value for burntool_state. Burntool succeeded.\n"; 23 24 print STDERR " b Old version value for burntool_state. Burntool needs to be rerun.\n"; … … 51 52 $burncount++; 52 53 } 53 elsif ($burntool_state == -1) { 54 elsif ($burntool_state == -1) { # processing 54 55 $char = '[01;33mP[m'; 55 56 } 56 elsif ($burntool_state == 0) { 57 elsif ($burntool_state == 0) { # has not been processed yet 57 58 $char = '[31mO[m'; 58 59 } 59 elsif ($burntool_state == -2) { 60 elsif ($burntool_state == -2) { # modified pixel data 60 61 $char = '[35;01;44;05mE[m'; 61 62 } 62 elsif ($burntool_state == -3) { 63 elsif ($burntool_state == -3) { # previous burntool segfaulted. 63 64 $char = '[34mX[m'; 64 65 } 65 else { 66 else { # old version 66 67 $char = '[32mb[m'; 67 68 } … … 128 129 129 130 $data_ref = $db->selectall_arrayref( $sth ); 130 131 131 132 132 # Reset
Note:
See TracChangeset
for help on using the changeset viewer.
