From 2d860f748d007e4c187f161b23b4828d4313d894 Mon Sep 17 00:00:00 2001 From: "Stephan T. Lavavej" Date: Wed, 22 Oct 2025 23:52:36 -0700 Subject: [PATCH] Fix the MSVC-internal test harness --- .../GH_001923_filesystem_long_path_support/custombuild.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/std/tests/GH_001923_filesystem_long_path_support/custombuild.pl b/tests/std/tests/GH_001923_filesystem_long_path_support/custombuild.pl index be97e68da36..9155a7409e9 100644 --- a/tests/std/tests/GH_001923_filesystem_long_path_support/custombuild.pl +++ b/tests/std/tests/GH_001923_filesystem_long_path_support/custombuild.pl @@ -10,6 +10,7 @@ () { my $cwd = Run::GetCWDName(); - Run::ExecuteCL(join(" ", "test.cpp", "/Fe$cwd.exe", "/link", "/MANIFESTINPUT:long_path_aware.manifest")); + Run::ExecuteCL("/c test.cpp"); + Run::ExecuteLink("/MANIFESTINPUT:long_path_aware.manifest /OUT:$cwd.exe test.obj"); } 1