Skip to content

Commit

Permalink
fuzz: Remove printing in fuzz_physics.
Browse files Browse the repository at this point in the history
This spams logs for no current benefit.
  • Loading branch information
kpreid committed Nov 8, 2024
1 parent feef26e commit 21aa7a3
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions fuzz/fuzz_targets/fuzz_physics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use all_is_cubes::math::{self, FreeCoordinate, NotNan};
use all_is_cubes::space::Space;
use all_is_cubes::time::Tick;
use all_is_cubes::universe::Universe;
use all_is_cubes::util::{ConciseDebug, Refmt as _};

use libfuzzer_sys::fuzz_target;

Expand All @@ -23,11 +22,11 @@ fuzz_target!(|input: ([FreeCoordinate; 3], [FreeCoordinate; 3], Space)| {
return;
}

println!(
"{} {}",
position.refmt(&ConciseDebug),
velocity.refmt(&ConciseDebug)
);
// println!(
// "{} {}",
// position.refmt(&ConciseDebug),
// velocity.refmt(&ConciseDebug)
// );

let mut universe = Universe::new();
let space_handle = universe.insert_anonymous(space);
Expand Down

0 comments on commit 21aa7a3

Please sign in to comment.