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:
authorWes Haggard <weshaggard@users.noreply.github.com>2017-05-25 23:39:17 +0300
committerGitHub <noreply@github.com>2017-05-25 23:39:17 +0300
commite1dc9ca0f25da9452b7cbee378c904e6958dab51 (patch)
tree7d23e69e292127e35534ca62413e6f0a696e908a /run-test.cmd
parentc0f391137591590b4f7349945fed032c749270c2 (diff)
This is no longer needed
We only ever used this for nano which we don't any longer so deleting.
Diffstat (limited to 'run-test.cmd')
-rw-r--r--run-test.cmd27
1 files changed, 0 insertions, 27 deletions
diff --git a/run-test.cmd b/run-test.cmd
deleted file mode 100644
index 2ef932a116..0000000000
--- a/run-test.cmd
+++ /dev/null
@@ -1,27 +0,0 @@
-@if not defined _echo @echo off
-setlocal
-:: To run tests outside of MSBuild.exe
-:: %1 is the path to the bin\<OSConfig> folder
-:: %2 is the path to the tools\testdotnetcli folder
-
-set LOCATION=%1
-set RUNTIME_PATH=%2
-
-if "%LOCATION%" == "" set LOCATION=%~dp0\bin\Windows_NT.AnyCPU.Debug
-if "%RUNTIME_PATH%" == "" set RUNTIME_PATH=%~dp0\bin\runtime\netcoreapp-Windows_NT-Debug-x64
-
-pushd %LOCATION%
-
-FOR /D %%F IN (*.Tests) DO (
- IF EXIST %%F\netcoreapp (
- pushd %%F\netcoreapp
- @echo Looking in %cd%...
- IF EXIST RunTests.cmd (
- @echo ... found tests
- CALL RunTests.cmd %RUNTIME_PATH%
- )
- popd
- )
-)
-
-popd