diff options
author | Drew Scoggins <anscoggi@microsoft.com> | 2016-10-11 15:51:49 -0700 |
---|---|---|
committer | Drew Scoggins <anscoggi@microsoft.com> | 2016-10-11 15:51:49 -0700 |
commit | 0122f4329e22b404ba1dabf4938882ae72c8b4e6 (patch) | |
tree | 296ba0020ae24c257efcdf14f9c4ad08a31b6238 /tests | |
parent | 3c67761c09e029569466ef1e96a2b0d67873c8a3 (diff) | |
download | coreclr-0122f4329e22b404ba1dabf4938882ae72c8b4e6.tar.gz coreclr-0122f4329e22b404ba1dabf4938882ae72c8b4e6.tar.bz2 coreclr-0122f4329e22b404ba1dabf4938882ae72c8b4e6.zip |
Fix runtest.cmd return code
When running the GenerateLayoutOnly command of runtest.cmd the script
should return zero instead of one.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/runtest.cmd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtest.cmd b/tests/runtest.cmd index 5620789575..4eb0416c04 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 ( |