Skip to content

Commit 19f6476

Browse files
docs: Replace ASCI chars.
1 parent 7905959 commit 19f6476

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

compiler/src/bin/fuzz.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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; }

0 commit comments

Comments
 (0)