diff options
author | Matt Mitchell <mmitche@microsoft.com> | 2015-04-01 16:03:37 -0700 |
---|---|---|
committer | Matt Mitchell <mmitche@microsoft.com> | 2015-04-01 16:05:25 -0700 |
commit | 268f0a413d807a5edacf33a9e5f514c7b19f7104 (patch) | |
tree | eee915b9481cb9ede8995d8ca886d37448f09d9f | |
parent | 82440897d45e16d706e80dc96918d362339d0d95 (diff) | |
download | coreclr-268f0a413d807a5edacf33a9e5f514c7b19f7104.tar.gz coreclr-268f0a413d807a5edacf33a9e5f514c7b19f7104.tar.bz2 coreclr-268f0a413d807a5edacf33a9e5f514c7b19f7104.zip |
Displaying usage message should cause build/test scripts to exit with non-zero code
-rw-r--r-- | build.cmd | 2 | ||||
-rw-r--r-- | tests/buildtest.cmd | 2 | ||||
-rw-r--r-- | tests/runtest.cmd | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -194,4 +194,4 @@ echo. echo BuildArch can be: x64 echo BuildType can be: Debug, Release echo Clean - optional argument to force a clean build. -goto :eof +exit /b 1
\ No newline at end of file diff --git a/tests/buildtest.cmd b/tests/buildtest.cmd index 173da4b2b8..a2ebdf07c3 100644 --- a/tests/buildtest.cmd +++ b/tests/buildtest.cmd @@ -173,4 +173,4 @@ echo. echo BuildArch can be: x64 echo BuildType can be: Debug, Release echo Clean - optional argument to force a clean build. -goto :eof +exit /b 1 diff --git a/tests/runtest.cmd b/tests/runtest.cmd index 55dc375aa2..ffefb5e9fc 100644 --- a/tests/runtest.cmd +++ b/tests/runtest.cmd @@ -137,5 +137,5 @@ echo BuildType can be: Debug, Release echo SkipWrapperGeneration- Optional parameter - this will run the same set of tests as the last time it was run echo TestEnv- Optional parameter - this will run a custom script to set custom test envirommnent settings. echo CORE_ROOT The path to the runtime -goto :eof +exit /b 1 |