Skip to content
Merged
Prev Previous commit
Next Next commit
test: use max verbosity for external tests
  • Loading branch information
DaniPopes committed Nov 10, 2023
commit ad36a091673be1c62703f0841304767a2f32ad70
3 changes: 2 additions & 1 deletion crates/test-utils/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ macro_rules! forgetest_external {
.expect("Could not clone repository. Is git installed?");
assert!(
git_clone.status.success(),
"could not clone repository:\nstdout:\n{}\nstderr:\n{}",
"could not clone repository:\n\nstdout:\n{}\n\nstderr:\n{}",
String::from_utf8_lossy(&git_clone.stdout),
String::from_utf8_lossy(&git_clone.stderr)
);
Expand All @@ -172,6 +172,7 @@ macro_rules! forgetest_external {
"--optimizer-runs",
"20000",
"--ffi",
"-vvvvv",
]);
cmd.set_env("FOUNDRY_FUZZ_RUNS", "1");

Expand Down