Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tss-esapi-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -466,11 +466,11 @@ pub mod tpm2_tss {
.filter(|file| {
file.extension()
.and_then(|ext| ext.to_str())
.map_or(false, |file_ext| ["so", "lib"].contains(&file_ext))
.is_some_and(|file_ext| ["so", "lib"].contains(&file_ext))
&& file
.file_stem()
.and_then(|stem| stem.to_str())
.map_or(false, |file_name| file_name.contains(lib_name))
.is_some_and(|file_name| file_name.contains(lib_name))
})
.peekable();

Expand Down
1 change: 1 addition & 0 deletions tss-esapi/tests/valgrind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ tpm2_startup -c -T mssim
##########################
# Install cargo-valgrind #
##########################
apt update
apt install -y valgrind
cargo install cargo-valgrind

Expand Down
Loading