Changeset 13748 for trunk/ippScripts/scripts/chip_imfile.pl
- Timestamp:
- Jun 10, 2007, 10:13:50 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippScripts/scripts/chip_imfile.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/chip_imfile.pl
r13698 r13748 28 28 use Pod::Usage qw( pod2usage ); 29 29 30 use constant RECIPE =>'PPIMAGE_OBDSFRA'; # Recipe to use30 my $RECIPE = 'PPIMAGE_OBDSFRA'; # Recipe to use 31 31 32 32 # Parse the command-line arguments … … 95 95 print "outputStats: $outputStats\n"; 96 96 97 my $command = "$ppImage -file $input $outputRoot -recipe PPIMAGE " . RECIPE . 98 " -stat $outputStats"; # Command to run ppImage 97 my $command = "$ppImage -file $input $outputRoot"; 98 $command .= " -recipe PPIMAGE $RECIPE"; 99 $command .= " -recipe PPSTATS CHIPSTATS"; 100 $command .= " -stats $outputStats"; # Command to run ppImage 101 99 102 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 100 103 run(command => $command, verbose => 1); … … 103 106 &my_die("Unable to perform ppImage: $error_code", $chip_id, $class_id, $error_code); 104 107 } 108 105 109 &my_die("Couldn't find expected output file: $outputImage\n", $chip_id, $class_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($outputImage); 106 110 &my_die("Couldn't find expected output file: $outputMask\n", $chip_id, $class_id, $PS_EXIT_SYS_ERROR) unless $ipprc->file_exists($outputMask);
Note:
See TracChangeset
for help on using the changeset viewer.
