fix: remove TODO via update of assert_tv

Before the fix from https://github.com/aminfa/assert_tv/issues/1,
`assert_tv` wouldn't pass through `#[cfg_attr(miri, ignore)]`. Now that
it is fixed, this works, thus we have one less miri test case failing.

Signed-off-by: wucke13 <wucke13+github@gmail.com>
This commit is contained in:
wucke13
2025-09-02 09:57:05 +02:00
committed by Karolin Varner
parent 49be83847b
commit 55ab57a1d0
2 changed files with 6 additions and 6 deletions

10
Cargo.lock generated
View File

@@ -128,9 +128,9 @@ dependencies = [
[[package]] [[package]]
name = "assert_tv" name = "assert_tv"
version = "0.6.4" version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a4141926c2544d566b0c5815040151fa6c1e96398810b43951d3c68e13dfc2a" checksum = "4aa42a8e0531efffd0fe96c6feef83221dc673c34b4ba2c2c9cbcd499511acba"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert_tv_macros", "assert_tv_macros",
@@ -145,9 +145,9 @@ dependencies = [
[[package]] [[package]]
name = "assert_tv_macros" name = "assert_tv_macros"
version = "0.6.4" version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49fe5672253d886b06afd14bf16aec6111e2d111cbc83cd094a4f5f69f003332" checksum = "4c7b50043d3ecb7bc6e5e60dc6704757b7f9a9903d2c5ca13f8d62d494c68333"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@@ -1453,7 +1453,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"windows-targets 0.52.6", "windows-targets 0.48.5",
] ]
[[package]] [[package]]

View File

@@ -82,7 +82,7 @@ struct CryptoServerTestValues {
} }
#[test_vec_case(format = "toml")] #[test_vec_case(format = "toml")]
// TODO find a way to make miri ignore these test cases #[cfg_attr(miri, ignore)] // unsupported operation: can't call foreign function `ZSTD_DStreamInSize` on OS `linux`
fn crypto_server_test_vector_1() -> anyhow::Result<()> { fn crypto_server_test_vector_1() -> anyhow::Result<()> {
type TV = TestVectorActive; type TV = TestVectorActive;
let test_values: TestCaseValues = TV::initialize_values(); let test_values: TestCaseValues = TV::initialize_values();