From 6b86f9371317fbf0da40718ee980038de7d0cbe2 Mon Sep 17 00:00:00 2001 From: belovdv <70999565+belovdv@users.noreply.github.com> Date: Wed, 29 Nov 2023 15:30:39 +0300 Subject: [PATCH] remove jobserver in shim for tests in testsuite/fix --- tests/testsuite/fix.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/testsuite/fix.rs b/tests/testsuite/fix.rs index 4e1f5428974..ac44309894f 100644 --- a/tests/testsuite/fix.rs +++ b/tests/testsuite/fix.rs @@ -110,6 +110,7 @@ fn rustc_shim_for_cargo_fix() -> Project { } let status = Command::new("rustc") .args(env::args().skip(1)) + .env_remove("CARGO_MAKEFLAGS") .status() .expect("failed to run rustc"); process::exit(status.code().unwrap_or(2));