From 88039532cd394c463a4ff257fe29a2fd3bedcb34 Mon Sep 17 00:00:00 2001 From: Mike Griese Date: Fri, 4 Dec 2020 12:08:40 -0600 Subject: [PATCH] Fix the path to the local unittests in `runut` (#8499) This is the same root cause as #8485. We moved the output of a bunch of projects to be unified. We forgot to update all the test scripts. In this case, the LocalTests were still using the old path that's _not_ under `bin/` --- tools/runut.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/runut.cmd b/tools/runut.cmd index 35d81dbdd..9df937cf1 100644 --- a/tools/runut.cmd +++ b/tools/runut.cmd @@ -8,9 +8,9 @@ rem That's a cppwinrt project, that doesn't use %PLATFORM% in it's path when the rem platform is Win32/x86. rem set a helper for us to find that test -set _TestHostAppPath=%OPENCON%\%PLATFORM%\%_LAST_BUILD_CONF%\TestHostApp +set _TestHostAppPath=%OPENCON%\bin\%PLATFORM%\%_LAST_BUILD_CONF%\TestHostApp if "%PLATFORM%" == "Win32" ( - set _TestHostAppPath=%OPENCON%\%_LAST_BUILD_CONF%\TestHostApp + set _TestHostAppPath=%OPENCON%\bin\%_LAST_BUILD_CONF%\TestHostApp ) call %TAEF% ^