Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Hendrix <jhendrix@microsoft.com>2016-03-25 22:20:39 +0300
committerJoel Hendrix <jhendrix@microsoft.com>2016-03-25 22:30:46 +0300
commit011b0103351455243b7c770281a055503e56900f (patch)
treef8d83fa91844cd46a8507b30e8362e0bce7d839c /run-test.cmd
parent7b68b0164e76f71f81faea4af0fc34f36e6ad184 (diff)
Make "@echo off" configurable.
Echo is unconditionally turned off in batch files making it hard to debug issues. This change provides a way to leave echo on by setting the _echo environment var to on.
Diffstat (limited to 'run-test.cmd')
-rw-r--r--run-test.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-test.cmd b/run-test.cmd
index 14ca88548c..b7e78fbf5a 100644
--- a/run-test.cmd
+++ b/run-test.cmd
@@ -1,4 +1,4 @@
-@echo off
+@if "%_echo%" neq "on" echo off
:: To run tests outside of MSBuild.exe
:: %1 is the path to the tests\<OSConfig> folder