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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@microsoft.com>2018-05-15 18:35:03 +0300
committerDavid Karlaš <david.karlas@microsoft.com>2018-05-15 18:36:00 +0300
commitfc7ad2a45346d115498fda89a2693615958f846b (patch)
treefec77b7938dae713cb77dd64736634e08ce9f065 /main/src/addins/MonoDevelop.UnitTesting
parent7ebfbcb674cea104565de5ee6ed4c09c5aa72b1f (diff)
Fix #3513: TestSessionTimeout is not configurable
Instead of adding new option to preferences and make it even more bloated, I decided to set timeout to maximum possible value. User can always cancel execution of unit test from IDE so there is no upside to having timeout from IDE. It would only confuse new users who would need to find setting and update to bigger value...
Diffstat (limited to 'main/src/addins/MonoDevelop.UnitTesting')
-rw-r--r--main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestAdapter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestAdapter.cs b/main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestAdapter.cs
index 052b51159e..a70082fb5c 100644
--- a/main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestAdapter.cs
+++ b/main/src/addins/MonoDevelop.UnitTesting/MonoDevelop.UnitTesting.VsTest/VsTestAdapter.cs
@@ -68,7 +68,7 @@ namespace MonoDevelop.UnitTesting.VsTest
ResultsDirectory = project.BaseIntermediateOutputPath.Combine (Constants.ResultsDirectoryName),
ShouldCollectSourceInformation = false,
TestAdaptersPaths = GetTestAdapters (project),
- TestSessionTimeout = 60000,
+ TestSessionTimeout = int.MaxValue
}.ToXml ().OuterXml + "</RunSettings>";
}