gpt4 book ai didi

rust - 是否可以用 Rust 编写测试,使其不在特定操作系统上运行?

转载 作者:行者123 更新时间:2023-11-29 08:06:03 24 4
gpt4 key购买 nike

我正在写一个测试:

#[cfg(test)]
mod tests {
#[test]
fn test_something() {
//content of test function
}
}

是否可以使此测试在使用 Windows 时不运行而仅在 Linux 上运行?

最佳答案

你可以选择完全不编译测试

#[cfg(not(target_os = "windows"))]
#[test]
fn test_something() {
//content of test function
}

或者您可以选择编译但不运行:

#[test]
#[cfg_attr(target_os = "windows", ignore)]
fn test_something() {
//content of test function
}

另见:

关于rust - 是否可以用 Rust 编写测试,使其不在特定操作系统上运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49588087/

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