Skip to content

Commit 11c3b93

Browse files
committed
add extra log messages to track setup
1 parent 8531b8c commit 11c3b93

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/intrinsic-test/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,15 @@ fn main() {
3030

3131
let test_environment = test_environment_result.unwrap();
3232

33+
info!("building C binaries");
3334
if !test_environment.build_c_file() {
3435
std::process::exit(2);
3536
}
37+
info!("building Rust binaries");
3638
if !test_environment.build_rust_file() {
3739
std::process::exit(3);
3840
}
41+
info!("comaparing outputs");
3942
if !test_environment.compare_outputs() {
4043
std::process::exit(1);
4144
}

0 commit comments

Comments
 (0)