From f31f59e1fd693623995fa6e177159f9f12d7aa38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E6=9D=B0=E5=8F=8B=20Jieyou=20Xu=20=28Joe=29?= Date: Mon, 3 Jun 2024 01:57:27 +0000 Subject: [PATCH] [EXPERIMENTAL] compiler-builtins: comment out env_clear() --- tests/run-make/compiler-builtins/rmake.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/run-make/compiler-builtins/rmake.rs b/tests/run-make/compiler-builtins/rmake.rs index f5da50ebb043b..1901a8520a5b9 100644 --- a/tests/run-make/compiler-builtins/rmake.rs +++ b/tests/run-make/compiler-builtins/rmake.rs @@ -56,7 +56,8 @@ fn main() { "--target", &target, ]) - .env_clear() + // FIXME(jieyouxu): so what happens if we don't `env_clear`? + //.env_clear() .env("PATH", path) .env("RUSTC", rustc) .env("RUSTFLAGS", "-Copt-level=0 -Cdebug-assertions=yes")