You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
if /i "%1"=="GenerateLayoutOnly" (set __GenerateLayoutOnly=1&shift&goto Arg_Loop)
81
81
if /i "%1"=="PerfTests" (set __PerfTests=true&shift&goto Arg_Loop)
82
82
if /i "%1"=="CoreFXTests" (set __CoreFXTests=true&shift&goto Arg_Loop)
83
-
if /i "%1"=="CoreFXTestList" (set __CoreFXTests=true&set _CoreFXTestList=%2&shift&shift&goto Arg_Loop)
83
+
if /i "%1"=="CoreFXTestList" (set __CoreFXTests=true&set __CoreFXTestList=%2&shift&shift&goto Arg_Loop)
84
84
if /i "%1"=="runcrossgentests" (set RunCrossGen=true&shift&goto Arg_Loop)
85
85
if /i "%1"=="link" (set DoLink=true&set ILLINK=%2&shift&shift&goto Arg_Loop)
86
86
if /i "%1"=="tieredcompilation" (set COMPLUS_TieredCompilation=1&shift&goto Arg_Loop)
@@ -108,17 +108,12 @@ shift
108
108
:: Done with argument processing. Check argument values for validity.
109
109
110
110
ifdefined __TestEnv (if not exist %__TestEnv%echo%__MsgPrefix%Error: Test Environment script %__TestEnv% not found &&exit /b 1)
111
-
if"%__PerfTests%"=="true" (
112
-
ifdefined __GenerateLayoutOnly echo%__MsgPrefix%Error: Don't specify both "PerfTests" and "GenerateLayoutOnly"&&exit /b 1
113
-
)
114
-
115
-
if"%__CoreFXTests%"=="true" (
116
-
ifdefined __GenerateLayoutOnly echo%__MsgPrefix%Error: Don't specify both "CoreFXTests" and "GenerateLayoutOnly"&&exit /b 1
117
-
)
111
+
if"%__PerfTests%"=="true" (if defined __GenerateLayoutOnly echo%__MsgPrefix%Error: Don't specify both "PerfTests" and "GenerateLayoutOnly"&&exit /b 1)
112
+
if"%__CoreFXTests%"=="true" (if defined __GenerateLayoutOnly echo%__MsgPrefix%Error: Don't specify both "CoreFXTests" and "GenerateLayoutOnly"&&exit /b 1)
118
113
119
-
ifdefined_CoreFXTestList (
120
-
ifnotexist%_CoreFXTestList% (
121
-
echo Couldn't find CoreFX test list %_CoreFXTestList%
114
+
ifdefined__CoreFXTestList (
115
+
ifnotexist"%__CoreFXTestList%" (
116
+
echo%__MsgPrefix%Error: Couldn't find CoreFX Test List "%__CoreFXTestList%".
122
117
exit /b 1
123
118
)
124
119
)
@@ -259,7 +254,7 @@ if "%__CollectDumps%"=="true" (
259
254
mkdir"!__CrashDumpFolder!"
260
255
)
261
256
262
-
:: Grab the current time befo\re execution begins. This will be used to determine which crash dumps
257
+
:: Grab the current time before execution begins. This will be used to determine which crash dumps
263
258
:: will be uploaded.
264
259
for /f "delims="%%ain ('python !__DumplingHelperPath! get_timestamp') do@set__StartTime=%%a
265
260
)
@@ -303,7 +298,6 @@ if errorlevel 1 (
303
298
)
304
299
goto TestsDone
305
300
306
-
307
301
REM =========================================================================================
308
302
REM ===
309
303
REM === Run CoreFX tests
@@ -333,22 +327,18 @@ if defined __GenerateTestHostOnly (
333
327
ifnotexist%_CoreFXTestHost%\dotnet.exe echo CoreFX test host not found, please run runtest.cmd again &&exit /b 1
334
328
335
329
set /p _CoreFXTestRemoteURL=<"%__ProjectFilesDir%\CoreFX\CoreFXTestListURL.txt"
0 commit comments