From 21df159d4239d4cb359d80e0990f67ccfec1c9d6 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: Tue, 13 Feb 2024 15:08:51 +0000 Subject: [PATCH] Fix support library name on Windows --- src/tools/compiletest/src/runtest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index 9499e08b4a5b4..bd9b713b88d6b 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -3765,7 +3765,7 @@ impl<'test> TestCx<'test> { support_dylib_path.push(&build_root); support_dylib_path.push(format!("{}-tools-bin", stage)); if self.config.target.contains("windows") { - support_dylib_path.push("librun_make_support.dll"); + support_dylib_path.push("run_make_support.dll"); } else if self.config.target.contains("apple") { support_dylib_path.push("librun_make_support.dylib"); } else {