mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
Drop check for mingw32-make.
From what I can tell, it is no longer necessary on GitHub Actions. This removes it to help simplify things.
This commit is contained in:
parent
7858bebb0e
commit
8e35e2f044
@ -1,8 +1,6 @@
|
||||
//! Tests for the jobserver protocol.
|
||||
|
||||
use cargo_util::is_ci;
|
||||
use std::net::TcpListener;
|
||||
use std::process::Command;
|
||||
use std::thread;
|
||||
|
||||
use cargo_test_support::{cargo_exe, project};
|
||||
@ -58,17 +56,8 @@ fn jobserver_exists() {
|
||||
p.cargo("build -j2").run();
|
||||
}
|
||||
|
||||
#[cargo_test]
|
||||
#[cargo_test(requires_make)]
|
||||
fn makes_jobserver_used() {
|
||||
let make = if cfg!(windows) {
|
||||
"mingw32-make"
|
||||
} else {
|
||||
"make"
|
||||
};
|
||||
if !is_ci() && Command::new(make).arg("--version").output().is_err() {
|
||||
return;
|
||||
}
|
||||
|
||||
let p = project()
|
||||
.file(
|
||||
"Cargo.toml",
|
||||
@ -162,7 +151,7 @@ all:
|
||||
drop((a2, a3));
|
||||
});
|
||||
|
||||
p.process(make)
|
||||
p.process("make")
|
||||
.env("CARGO", cargo_exe())
|
||||
.env("ADDR", addr.to_string())
|
||||
.arg("-j2")
|
||||
@ -172,15 +161,6 @@ all:
|
||||
|
||||
#[cargo_test]
|
||||
fn jobserver_and_j() {
|
||||
let make = if cfg!(windows) {
|
||||
"mingw32-make"
|
||||
} else {
|
||||
"make"
|
||||
};
|
||||
if !is_ci() && Command::new(make).arg("--version").output().is_err() {
|
||||
return;
|
||||
}
|
||||
|
||||
let p = project()
|
||||
.file("src/lib.rs", "")
|
||||
.file(
|
||||
@ -192,7 +172,7 @@ all:
|
||||
)
|
||||
.build();
|
||||
|
||||
p.process(make)
|
||||
p.process("make")
|
||||
.env("CARGO", cargo_exe())
|
||||
.arg("-j2")
|
||||
.with_stderr(
|
||||
|
Loading…
x
Reference in New Issue
Block a user