Changeset 2405 for trunk/tsuite
- Timestamp:
- 10/19/08 07:37:01 (3 months ago)
- Files:
-
- 1 modified
-
trunk/tsuite/auto/fix_input_scripts.pl (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tsuite/auto/fix_input_scripts.pl
r2361 r2405 127 127 { 128 128 # this does a lot of magic to convert the assert output back to an input command 129 &do_field_heuristics( $fields[$j] );129 &do_field_heuristics( $fields[$j], $line ); 130 130 if( $fields[$j] ne "" ) 131 131 { … … 134 134 } 135 135 $oldvaltrim = $oldval; 136 &do_field_heuristics( $oldvaltrim );136 &do_field_heuristics( $oldvaltrim, $line ); 137 137 $regexp .= "${oldvaltrim}[\\.0]*"; 138 138 if( $upper_limit ) … … 280 280 $_[0] = "csupra"; 281 281 } 282 if( $_[1] =~ /^H2/ && $_[0] =~ /^[1-9]0[1-9]$/ ) 283 { 284 $_[0] =~ s/([1-9])0([1-9])/$1 +$2/; 285 } 282 286 } 283 287
