Skip to content

Commit b3a1d0c

Browse files
committed
Only testing on linux
1 parent cb1a3f0 commit b3a1d0c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/testsuite/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ fn cargo_compile_without_manifest() {
562562
}
563563

564564
#[cargo_test]
565-
#[cfg(not(target_os = "macos"))]
565+
#[cfg(target_os = "linux")]
566566
fn cargo_compile_with_lowercase_cargo_toml() {
567567
let p = project()
568568
.no_manifest()

tests/testsuite/install.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ fn install_target_dir() {
400400
}
401401

402402
#[cargo_test]
403-
#[cfg(not(target_os = "macos"))]
403+
#[cfg(target_os = "linux")]
404404
fn install_path_with_lowercase_cargo_toml() {
405405
let toml = paths::root().join("cargo.toml");
406406
fs::write(toml, "").unwrap();
@@ -778,7 +778,7 @@ fn git_repo() {
778778
}
779779

780780
#[cargo_test]
781-
#[cfg(not(target_os = "macos"))]
781+
#[cfg(target_os = "linux")]
782782
fn git_repo_with_lowercase_cargo_toml() {
783783
let p = git::repo(&paths::root().join("foo"))
784784
.file("cargo.toml", &basic_manifest("foo", "0.1.0"))

0 commit comments

Comments
 (0)