diff options
6 files changed, 58 insertions, 8 deletions
diff --git a/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs b/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs index 933fa12..2bb0926 100644 --- a/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs +++ b/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs | |||
@@ -330,5 +330,16 @@ namespace OpenSim.Framework.Communications.Tests | |||
330 | Assert.That(rootFolder.RequestListOfFolders(), Is.Empty); | 330 | Assert.That(rootFolder.RequestListOfFolders(), Is.Empty); |
331 | Assert.That(myScene.InventoryService.GetFolder(myFolder), Is.Null); | 331 | Assert.That(myScene.InventoryService.GetFolder(myFolder), Is.Null); |
332 | } | 332 | } |
333 | |||
334 | [TearDown] | ||
335 | public void TearDown() | ||
336 | { | ||
337 | try | ||
338 | { | ||
339 | if (MainServer.Instance != null) MainServer.Instance.Stop(); | ||
340 | } | ||
341 | catch (System.NullReferenceException) | ||
342 | { } | ||
343 | } | ||
333 | } | 344 | } |
334 | } \ No newline at end of file | 345 | } \ No newline at end of file |
diff --git a/OpenSim/Framework/Communications/Tests/LoginServiceTests.cs b/OpenSim/Framework/Communications/Tests/LoginServiceTests.cs index 57a908e..0a9d2ae 100644 --- a/OpenSim/Framework/Communications/Tests/LoginServiceTests.cs +++ b/OpenSim/Framework/Communications/Tests/LoginServiceTests.cs | |||
@@ -362,6 +362,16 @@ namespace OpenSim.Framework.Communications.Tests | |||
362 | //Console.WriteLine("Finished T023_TestAuthenticatedLoginAlreadyLoggedIn()"); | 362 | //Console.WriteLine("Finished T023_TestAuthenticatedLoginAlreadyLoggedIn()"); |
363 | } | 363 | } |
364 | 364 | ||
365 | [TearDown] | ||
366 | public void TearDown() | ||
367 | { | ||
368 | try | ||
369 | { | ||
370 | if (MainServer.Instance != null) MainServer.Instance.Stop(); | ||
371 | } catch (NullReferenceException) | ||
372 | {} | ||
373 | } | ||
374 | |||
365 | public class TestLoginToRegionConnector : ILoginServiceToRegionsConnector | 375 | public class TestLoginToRegionConnector : ILoginServiceToRegionsConnector |
366 | { | 376 | { |
367 | private List<RegionInfo> m_regionsList = new List<RegionInfo>(); | 377 | private List<RegionInfo> m_regionsList = new List<RegionInfo>(); |
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index 75c9310..771ae05 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -1637,13 +1637,20 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1637 | public void Stop() | 1637 | public void Stop() |
1638 | { | 1638 | { |
1639 | HTTPDRunning = false; | 1639 | HTTPDRunning = false; |
1640 | m_httpListener2.ExceptionThrown -= httpServerException; | 1640 | try |
1641 | //m_httpListener2.DisconnectHandler = null; | 1641 | { |
1642 | 1642 | m_httpListener2.ExceptionThrown -= httpServerException; | |
1643 | m_httpListener2.LogWriter = null; | 1643 | //m_httpListener2.DisconnectHandler = null; |
1644 | m_httpListener2.RequestReceived -= OnRequest; | ||
1645 | 1644 | ||
1646 | m_httpListener2.Stop(); | 1645 | m_httpListener2.LogWriter = null; |
1646 | m_httpListener2.RequestReceived -= OnRequest; | ||
1647 | m_httpListener2.Stop(); | ||
1648 | } | ||
1649 | catch (NullReferenceException) | ||
1650 | { | ||
1651 | m_log.Warn("[BASEHTTPSERVER]: Null Reference when stopping HttpServer."); | ||
1652 | } | ||
1653 | |||
1647 | } | 1654 | } |
1648 | 1655 | ||
1649 | public void RemoveStreamHandler(string httpMethod, string path) | 1656 | public void RemoveStreamHandler(string httpMethod, string path) |
diff --git a/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTests.cs b/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTests.cs index 3ee6007..8cd1d55 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTests.cs | |||
@@ -378,6 +378,12 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
378 | Assert.That(presence.HasAttachments(), Is.True, "Presence has not received new objects"); | 378 | Assert.That(presence.HasAttachments(), Is.True, "Presence has not received new objects"); |
379 | } | 379 | } |
380 | 380 | ||
381 | [TearDown] | ||
382 | public void TearDown() | ||
383 | { | ||
384 | if (MainServer.Instance != null) MainServer.Instance.Stop(); | ||
385 | } | ||
386 | |||
381 | public static string GetRandomCapsObjectPath() | 387 | public static string GetRandomCapsObjectPath() |
382 | { | 388 | { |
383 | TestHelper.InMethod(); | 389 | TestHelper.InMethod(); |
diff --git a/OpenSim/Region/Framework/Scenes/Tests/StandaloneTeleportTests.cs b/OpenSim/Region/Framework/Scenes/Tests/StandaloneTeleportTests.cs index 23eab90..1d460dd 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/StandaloneTeleportTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/StandaloneTeleportTests.cs | |||
@@ -78,6 +78,17 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
78 | // Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 78 | // Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); |
79 | } | 79 | } |
80 | 80 | ||
81 | [TearDown] | ||
82 | public void TearDown() | ||
83 | { | ||
84 | try | ||
85 | { | ||
86 | if (MainServer.Instance != null) MainServer.Instance.Stop(); | ||
87 | } | ||
88 | catch (NullReferenceException) | ||
89 | { } | ||
90 | } | ||
91 | |||
81 | } | 92 | } |
82 | 93 | ||
83 | public class ThreadRunResults | 94 | public class ThreadRunResults |
diff --git a/prebuild.xml b/prebuild.xml index 4dbb81c..343b06a 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -3181,6 +3181,7 @@ | |||
3181 | <Reference name="OpenMetaverse.dll"/> | 3181 | <Reference name="OpenMetaverse.dll"/> |
3182 | <Reference name="OpenSim.Framework"/> | 3182 | <Reference name="OpenSim.Framework"/> |
3183 | <Reference name="OpenSim.Framework.Console"/> | 3183 | <Reference name="OpenSim.Framework.Console"/> |
3184 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
3184 | <Reference name="Nini.dll" /> | 3185 | <Reference name="Nini.dll" /> |
3185 | <Reference name="log4net.dll"/> | 3186 | <Reference name="log4net.dll"/> |
3186 | 3187 | ||
@@ -3245,7 +3246,7 @@ | |||
3245 | <ReferencePath>../../../bin/</ReferencePath> | 3246 | <ReferencePath>../../../bin/</ReferencePath> |
3246 | <Reference name="System"/> | 3247 | <Reference name="System"/> |
3247 | <Reference name="System.Xml"/> | 3248 | <Reference name="System.Xml"/> |
3248 | <Reference name="System.Core"/> | 3249 | <Reference name="System.Core"/> |
3249 | <Reference name="System.Drawing"/> | 3250 | <Reference name="System.Drawing"/> |
3250 | <Reference name="System.Data"/> | 3251 | <Reference name="System.Data"/> |
3251 | <Reference name="OpenMetaverse.dll"/> | 3252 | <Reference name="OpenMetaverse.dll"/> |
@@ -3254,7 +3255,7 @@ | |||
3254 | <Reference name="OpenSim.Data"/> | 3255 | <Reference name="OpenSim.Data"/> |
3255 | <Reference name="OpenSim.Region.Framework"/> | 3256 | <Reference name="OpenSim.Region.Framework"/> |
3256 | <Reference name="OpenSim.Region.CoreModules"/> | 3257 | <Reference name="OpenSim.Region.CoreModules"/> |
3257 | <Reference name="OpenSim.Tests.Common"/> | 3258 | <Reference name="OpenSim.Tests.Common"/> |
3258 | <Reference name="log4net.dll"/> | 3259 | <Reference name="log4net.dll"/> |
3259 | <Reference name="Mono.Addins.dll" /> | 3260 | <Reference name="Mono.Addins.dll" /> |
3260 | <Reference name="nunit.framework.dll" /> | 3261 | <Reference name="nunit.framework.dll" /> |
@@ -3397,6 +3398,7 @@ | |||
3397 | <Reference name="XMLRPC.dll"/> | 3398 | <Reference name="XMLRPC.dll"/> |
3398 | <Reference name="OpenSim.Framework.Console"/> | 3399 | <Reference name="OpenSim.Framework.Console"/> |
3399 | <Reference name="OpenSim.Framework"/> | 3400 | <Reference name="OpenSim.Framework"/> |
3401 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
3400 | <Reference name="OpenSim.Tests.Common"/> | 3402 | <Reference name="OpenSim.Tests.Common"/> |
3401 | <Reference name="Nini.dll" /> | 3403 | <Reference name="Nini.dll" /> |
3402 | <Reference name="nunit.framework.dll" /> | 3404 | <Reference name="nunit.framework.dll" /> |
@@ -3488,6 +3490,7 @@ | |||
3488 | <Reference name="OpenSim.Client.Linden"/> | 3490 | <Reference name="OpenSim.Client.Linden"/> |
3489 | <Reference name="OpenSim.Framework"/> | 3491 | <Reference name="OpenSim.Framework"/> |
3490 | <Reference name="OpenSim.Framework.Communications"/> | 3492 | <Reference name="OpenSim.Framework.Communications"/> |
3493 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
3491 | <Reference name="OpenSim.Services.Interfaces"/> | 3494 | <Reference name="OpenSim.Services.Interfaces"/> |
3492 | <Reference name="OpenSim.Data"/> | 3495 | <Reference name="OpenSim.Data"/> |
3493 | <Reference name="OpenSim.Region.Framework"/> | 3496 | <Reference name="OpenSim.Region.Framework"/> |
@@ -3524,6 +3527,7 @@ | |||
3524 | <Reference name="OpenSim.Framework.Communications"/> | 3527 | <Reference name="OpenSim.Framework.Communications"/> |
3525 | <Reference name="OpenSim.Framework.Console"/> | 3528 | <Reference name="OpenSim.Framework.Console"/> |
3526 | <Reference name="OpenSim.Framework.Servers"/> | 3529 | <Reference name="OpenSim.Framework.Servers"/> |
3530 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
3527 | <Reference name="OpenSim.Framework.Statistics"/> | 3531 | <Reference name="OpenSim.Framework.Statistics"/> |
3528 | <Reference name="OpenSim.Region.Communications.Local"/> | 3532 | <Reference name="OpenSim.Region.Communications.Local"/> |
3529 | <Reference name="OpenSim.Region.Framework"/> | 3533 | <Reference name="OpenSim.Region.Framework"/> |
@@ -3585,6 +3589,7 @@ | |||
3585 | <Reference name="OpenSim.Framework.Console"/> | 3589 | <Reference name="OpenSim.Framework.Console"/> |
3586 | <Reference name="OpenSim.Framework.Servers"/> | 3590 | <Reference name="OpenSim.Framework.Servers"/> |
3587 | <Reference name="OpenSim.Framework.Statistics"/> | 3591 | <Reference name="OpenSim.Framework.Statistics"/> |
3592 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
3588 | <Reference name="OpenSim.Region.Communications.Local"/> | 3593 | <Reference name="OpenSim.Region.Communications.Local"/> |
3589 | <Reference name="OpenSim.Region.Framework"/> | 3594 | <Reference name="OpenSim.Region.Framework"/> |
3590 | <Reference name="OpenSim.Region.CoreModules"/> | 3595 | <Reference name="OpenSim.Region.CoreModules"/> |