From 0122f4329e22b404ba1dabf4938882ae72c8b4e6 Mon Sep 17 00:00:00 2001 From: Drew Scoggins Date: Tue, 11 Oct 2016 15:51:49 -0700 Subject: [PATCH] Fix runtest.cmd return code When running the GenerateLayoutOnly command of runtest.cmd the script should return zero instead of one. --- tests/runtest.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtest.cmd b/tests/runtest.cmd index 5620789..4eb0416 100644 --- a/tests/runtest.cmd +++ b/tests/runtest.cmd @@ -185,7 +185,7 @@ call :PrecompileFX :SkipPrecompileFX if defined __GenerateLayoutOnly ( - exit /b 1 + exit /b 0 ) if not exist %CORE_ROOT%\coreclr.dll ( -- 2.7.4