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