我正在写一个测试:
#[cfg(test)] mod tests { #[test] fn test_something() { //content of test function } }
是否可以让这个测试在使用Windows时不运行而只在Linux上运行?
rust
rust ×1