1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

Merge pull request #5471 from cakebaker/cp_fix_unused_variable_warnings

cp: restrict two test functions to linux/mac/win
This commit is contained in:
Terts Diepraam 2023-11-01 09:11:38 +01:00 committed by GitHub
commit 98ad01b1cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3232,6 +3232,7 @@ fn test_cp_archive_on_directory_ending_dot() {
}
#[test]
#[cfg(any(target_os = "linux", target_os = "windows", target_os = "macos"))]
fn test_cp_debug_default() {
let ts = TestScenario::new(util_name!());
let at = &ts.fixtures;
@ -3259,6 +3260,7 @@ fn test_cp_debug_default() {
}
#[test]
#[cfg(any(target_os = "linux", target_os = "windows", target_os = "macos"))]
fn test_cp_debug_multiple_default() {
let ts = TestScenario::new(util_name!());
let at = &ts.fixtures;