gpt4 book ai didi

testing - Rust 禁用特定目标的所有测试

转载 作者:行者123 更新时间:2023-12-03 11:26:57 32 4
gpt4 key购买 nike

我正在开发一个 Rust crate,我想禁用一个特定目标架构 (wasm32) 的所有测试。我知道您可以使用 cfg 注释禁用特定源项目:

#[cfg(not(target_arch="wasm32"))]
#[test]
fn only_compile_on_not_wasm32() {
...
}

但是因为我想禁用所有测试,所以我想要一种更快的方法,最好是作为 Cargo.toml 文件中的配置。 crate 看起来像这样:

├── Cargo.toml
├── src
│   ├── ...
│   └── lib.rs
└── tests
├── ...
└── mod.rs

即我要禁用的测试存储在 tests 目录中。

最佳答案

如果您没有很多测试文件,那么您可以禁用将其应用于包含元素的整个模块:

#![cfg(not(target_arch="wasm32"))]

关于testing - Rust 禁用特定目标的所有测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63739180/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com