Skip to content

Commit

Permalink
Add basic integration test for checksum-hash-algorithm feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Xaeroxe committed Oct 2, 2024
1 parent 6fd9ef6 commit 0069649
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/run-make/checksum-freshness/expected.d
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
lib.d: lib.rs # checksum:blake3=5fd6328c93a3360bc580567aec10731ab3e5efc4a0f957b1bba0db0d27af3767 file_len:110

lib.rs:
5 changes: 5 additions & 0 deletions tests/run-make/checksum-freshness/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// A basic library to be used in tests with no real purpose.

pub fn sum(a: i32, b: i32) -> i32 {
a + b
}
9 changes: 9 additions & 0 deletions tests/run-make/checksum-freshness/rmake.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
use run_make_support::{rfs, rustc};

fn main() {
rustc().input("lib.rs").arg("-Zchecksum-hash-algorithm=blake3").emit("dep-info").run();
let make_file_contents = rfs::read_to_string("lib.d");
let expected_contents = rfs::read_to_string("expected.d");
assert_eq!(make_file_contents, expected_contents);
assert!(!expected_contents.is_empty());
}

0 comments on commit 0069649

Please sign in to comment.