Skip to content

Commit 191c0be

Browse files
committed
Print generated files
1 parent e24673b commit 191c0be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -3934,7 +3934,9 @@ macro_rules! panic {
39343934

39353935
let rng = &mut rand::thread_rng();
39363936
let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());
3937-
let out_file = out_dir.join(format!("{}.rs", T::name()));
3937+
let out_file_name = format!("{}.rs", T::name());
3938+
let out_file = out_dir.join(&out_file_name);
3939+
println!("Generating {}", out_file_name);
39383940
let contents = mk_tests::<T, _>(NTESTS, rng);
39393941

39403942
File::create(out_file)

0 commit comments

Comments
 (0)