a |-- a.config |-- a.html `-- a_class |-- class_Verification | `-- rev1 | |-- _projects_a_a_class_class_Verification_rev1.config | |-- _projects_a_a_class_class_Verification_rev1.html | |-- a_class.config `-- a_class.html #### SL.NO CHECKLIST ITEM VALUE COMMENTS CONFIRMATION CREATED_BY=kjani Review the RTL system level compile log; confirm that warnings can be ignored. 1 Name of the Reviewer Subin CORRECT To Be Done 2 Is the review complete? No CORRECT To Be Done 3 List the number of warnings if any and provide comments To Be Done CORRECT To Be Done Review system level RTL regression failures; confirm that failing tests can be dispositioned. 4 Name of the Reviewer To Be Done CORRECT To Be Done 5 Is the review complete? No CORRECT To Be Done #### open my $fh, '<', $file or die "Can't open $file: $!"; while (my $line=<$fh>) { chomp $line; for($line) { s/\&//g; #s/[\\\_\@\_]//g; s/COMMENT//g; } my @data = split /:/, $line; my $class = $data[0] ? 'normal' : 'bold'; print $fh_out qq[]; my $check=0; my $dolink=$data[0] !~ m/[\=\%]/; for my $word(@data){ $check++; print $fh_out ''; if($check==1 && $dolink ) { $word=~s/("\S+|\S+|")\s*/$1/g; print $fh_out qq[$word]; } else { print $fh_out $word;} print $fh_out ''; } }