File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -349,15 +349,15 @@ fn main() {
349349 stats. crashes += 1 ;
350350 let path = format ! ( "{SAVE_DIR}/crash_{:06}.py" , stats. crashes) ;
351351 let _ = std:: fs:: write ( & path, & input) ;
352- eprintln ! ( "\n [CRASH #{:06}] → {path}\n {:?}\n " , stats. crashes, & input[ ..input. len( ) . min( 120 ) ] ) ;
352+ eprintln ! ( "\n [CRASH #{:06}] -> {path}\n {:?}\n " , stats. crashes, & input[ ..input. len( ) . min( 120 ) ] ) ;
353353 }
354354 Outcome :: Clean ( bm, t_lex, t_parse, t_vm) => {
355355 perf. record ( t_lex, t_parse, t_vm) ;
356356 let total = t_lex + t_parse + t_vm;
357357 if total > SLOW_THRESHOLD {
358358 let path = format ! ( "{SAVE_DIR}/slow_{:06}.py" , stats. iters) ;
359359 let _ = std:: fs:: write ( & path, & input) ;
360- eprintln ! ( "\n [SLOW {}ms] → {path}\n lex={}µs parse={}µs vm={}µs\n " ,
360+ eprintln ! ( "\n [SLOW {}ms] -> {path}\n lex={}µs parse={}µs vm={}µs\n " ,
361361 total. as_millis( ) , t_lex. as_micros( ) , t_parse. as_micros( ) , t_vm. as_micros( ) ) ;
362362 }
363363 if corpus. add ( input, bm) { stats. adds += 1 ; }
You can’t perform that action at this time.
0 commit comments