We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8531b8c commit 11c3b93Copy full SHA for 11c3b93
crates/intrinsic-test/src/main.rs
@@ -30,12 +30,15 @@ fn main() {
30
31
let test_environment = test_environment_result.unwrap();
32
33
+ info!("building C binaries");
34
if !test_environment.build_c_file() {
35
std::process::exit(2);
36
}
37
+ info!("building Rust binaries");
38
if !test_environment.build_rust_file() {
39
std::process::exit(3);
40
41
+ info!("comaparing outputs");
42
if !test_environment.compare_outputs() {
43
std::process::exit(1);
44
0 commit comments