diff options
author | Sean Dague | 2009-05-07 19:07:08 +0000 |
---|---|---|
committer | Sean Dague | 2009-05-07 19:07:08 +0000 |
commit | ce0a84cbc0e277dd5be08a20febf13364a985a3a (patch) | |
tree | d5fc2dda5eaf3674c67d82198efd04323f1ba7a5 /OpenSim/Region | |
parent | RemoteAdminPlugin was using a mixture of both "true"/"false" and 0/1 (diff) | |
download | opensim-SC_OLD-ce0a84cbc0e277dd5be08a20febf13364a985a3a.zip opensim-SC_OLD-ce0a84cbc0e277dd5be08a20febf13364a985a3a.tar.gz opensim-SC_OLD-ce0a84cbc0e277dd5be08a20febf13364a985a3a.tar.bz2 opensim-SC_OLD-ce0a84cbc0e277dd5be08a20febf13364a985a3a.tar.xz |
instrument most of the tests with a new InMethod function that may help us figure
out where that pesky deadlock is during test runs.
Diffstat (limited to 'OpenSim/Region')
10 files changed, 45 insertions, 17 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs index 80fbba2..02f78c7 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | |||
@@ -150,6 +150,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
150 | [Test, LongRunning] | 150 | [Test, LongRunning] |
151 | public void TestAddClient() | 151 | public void TestAddClient() |
152 | { | 152 | { |
153 | TestHelper.InMethod(); | ||
154 | |||
153 | uint myCircuitCode = 123456; | 155 | uint myCircuitCode = 123456; |
154 | UUID myAgentUuid = UUID.Parse("00000000-0000-0000-0000-000000000001"); | 156 | UUID myAgentUuid = UUID.Parse("00000000-0000-0000-0000-000000000001"); |
155 | UUID mySessionUuid = UUID.Parse("00000000-0000-0000-0000-000000000002"); | 157 | UUID mySessionUuid = UUID.Parse("00000000-0000-0000-0000-000000000002"); |
@@ -196,6 +198,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
196 | [Test] | 198 | [Test] |
197 | public void TestRemoveClient() | 199 | public void TestRemoveClient() |
198 | { | 200 | { |
201 | TestHelper.InMethod(); | ||
202 | |||
199 | uint myCircuitCode = 123457; | 203 | uint myCircuitCode = 123457; |
200 | 204 | ||
201 | TestLLUDPServer testLLUDPServer; | 205 | TestLLUDPServer testLLUDPServer; |
@@ -218,6 +222,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
218 | [Test] | 222 | [Test] |
219 | public void TestMalformedPacketSend() | 223 | public void TestMalformedPacketSend() |
220 | { | 224 | { |
225 | TestHelper.InMethod(); | ||
226 | |||
221 | uint myCircuitCode = 123458; | 227 | uint myCircuitCode = 123458; |
222 | EndPoint testEp = new IPEndPoint(IPAddress.Loopback, 1001); | 228 | EndPoint testEp = new IPEndPoint(IPAddress.Loopback, 1001); |
223 | MockScene scene = new MockScene(); | 229 | MockScene scene = new MockScene(); |
@@ -256,6 +262,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
256 | [Test] | 262 | [Test] |
257 | public void TestExceptionOnBeginReceive() | 263 | public void TestExceptionOnBeginReceive() |
258 | { | 264 | { |
265 | TestHelper.InMethod(); | ||
266 | |||
259 | MockScene scene = new MockScene(); | 267 | MockScene scene = new MockScene(); |
260 | 268 | ||
261 | uint circuitCodeA = 130000; | 269 | uint circuitCodeA = 130000; |
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/PacketHandlerTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/PacketHandlerTests.cs index 6e429a4..4ebc624 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/Tests/PacketHandlerTests.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/PacketHandlerTests.cs | |||
@@ -32,6 +32,7 @@ using OpenMetaverse; | |||
32 | using OpenMetaverse.Packets; | 32 | using OpenMetaverse.Packets; |
33 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
34 | using OpenSim.Tests.Common.Mock; | 34 | using OpenSim.Tests.Common.Mock; |
35 | using OpenSim.Tests.Common; | ||
35 | 36 | ||
36 | namespace OpenSim.Region.ClientStack.LindenUDP.Tests | 37 | namespace OpenSim.Region.ClientStack.LindenUDP.Tests |
37 | { | 38 | { |
@@ -47,6 +48,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
47 | /// </summary> | 48 | /// </summary> |
48 | public void InPacketTest() | 49 | public void InPacketTest() |
49 | { | 50 | { |
51 | TestHelper.InMethod(); | ||
52 | |||
50 | AgentCircuitData agent = new AgentCircuitData(); | 53 | AgentCircuitData agent = new AgentCircuitData(); |
51 | agent.AgentID = UUID.Random(); | 54 | agent.AgentID = UUID.Random(); |
52 | agent.firstname = "testfirstname"; | 55 | agent.firstname = "testfirstname"; |
diff --git a/OpenSim/Region/CoreModules/Agent/TextureSender/Tests/TextureSenderTests.cs b/OpenSim/Region/CoreModules/Agent/TextureSender/Tests/TextureSenderTests.cs index ec95187..7b3e887 100644 --- a/OpenSim/Region/CoreModules/Agent/TextureSender/Tests/TextureSenderTests.cs +++ b/OpenSim/Region/CoreModules/Agent/TextureSender/Tests/TextureSenderTests.cs | |||
@@ -30,6 +30,7 @@ using NUnit.Framework; | |||
30 | using NUnit.Framework.SyntaxHelpers; | 30 | using NUnit.Framework.SyntaxHelpers; |
31 | using OpenMetaverse; | 31 | using OpenMetaverse; |
32 | using OpenSim.Framework; | 32 | using OpenSim.Framework; |
33 | using OpenSim.Tests.Common; | ||
33 | using OpenSim.Tests.Common.Mock; | 34 | using OpenSim.Tests.Common.Mock; |
34 | 35 | ||
35 | namespace OpenSim.Region.CoreModules.Agent.TextureSender | 36 | namespace OpenSim.Region.CoreModules.Agent.TextureSender |
@@ -76,6 +77,7 @@ namespace OpenSim.Region.CoreModules.Agent.TextureSender | |||
76 | [Test] | 77 | [Test] |
77 | public void T010_SendPkg() | 78 | public void T010_SendPkg() |
78 | { | 79 | { |
80 | TestHelper.InMethod(); | ||
79 | // Normal sending | 81 | // Normal sending |
80 | AssetBase abase = new AssetBase(uuid1, "asset one"); | 82 | AssetBase abase = new AssetBase(uuid1, "asset one"); |
81 | byte[] abdata = new byte[testsize]; | 83 | byte[] abdata = new byte[testsize]; |
@@ -95,6 +97,7 @@ namespace OpenSim.Region.CoreModules.Agent.TextureSender | |||
95 | [Test] | 97 | [Test] |
96 | public void T011_UpdateReq() | 98 | public void T011_UpdateReq() |
97 | { | 99 | { |
100 | TestHelper.InMethod(); | ||
98 | // Test packet number start | 101 | // Test packet number start |
99 | AssetBase abase = new AssetBase(uuid2, "asset two"); | 102 | AssetBase abase = new AssetBase(uuid2, "asset two"); |
100 | byte[] abdata = new byte[testsize]; | 103 | byte[] abdata = new byte[testsize]; |
@@ -143,6 +146,7 @@ namespace OpenSim.Region.CoreModules.Agent.TextureSender | |||
143 | [Test] | 146 | [Test] |
144 | public void T999_FinishStatus() | 147 | public void T999_FinishStatus() |
145 | { | 148 | { |
149 | TestHelper.InMethod(); | ||
146 | // Of the 4 assets "sent", only 2 sent the first part. | 150 | // Of the 4 assets "sent", only 2 sent the first part. |
147 | Assert.That(client.sentdatapkt.Count,Is.EqualTo(2)); | 151 | Assert.That(client.sentdatapkt.Count,Is.EqualTo(2)); |
148 | 152 | ||
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiverTests.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiverTests.cs index 4c6045a..374cea3 100644 --- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiverTests.cs +++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/Tests/InventoryArchiverTests.cs | |||
@@ -68,6 +68,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests | |||
68 | [Test] | 68 | [Test] |
69 | public void TestSaveIarV0p1() | 69 | public void TestSaveIarV0p1() |
70 | { | 70 | { |
71 | TestHelper.InMethod(); | ||
71 | //log4net.Config.XmlConfigurator.Configure(); | 72 | //log4net.Config.XmlConfigurator.Configure(); |
72 | 73 | ||
73 | InventoryArchiverModule archiverModule = new InventoryArchiverModule(); | 74 | InventoryArchiverModule archiverModule = new InventoryArchiverModule(); |
@@ -201,6 +202,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests | |||
201 | [Test] | 202 | [Test] |
202 | public void TestLoadIarV0p1ExistingUsers() | 203 | public void TestLoadIarV0p1ExistingUsers() |
203 | { | 204 | { |
205 | TestHelper.InMethod(); | ||
204 | Console.WriteLine("Started {0}", MethodBase.GetCurrentMethod()); | 206 | Console.WriteLine("Started {0}", MethodBase.GetCurrentMethod()); |
205 | 207 | ||
206 | //log4net.Config.XmlConfigurator.Configure(); | 208 | //log4net.Config.XmlConfigurator.Configure(); |
@@ -267,6 +269,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests | |||
267 | [Test] | 269 | [Test] |
268 | public void TestLoadIarV0p1TempProfiles() | 270 | public void TestLoadIarV0p1TempProfiles() |
269 | { | 271 | { |
272 | TestHelper.InMethod(); | ||
270 | Console.WriteLine("### Started {0} ###", MethodBase.GetCurrentMethod()); | 273 | Console.WriteLine("### Started {0} ###", MethodBase.GetCurrentMethod()); |
271 | 274 | ||
272 | log4net.Config.XmlConfigurator.Configure(); | 275 | log4net.Config.XmlConfigurator.Configure(); |
@@ -336,6 +339,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests | |||
336 | [Test] | 339 | [Test] |
337 | public void TestReplicateArchivePathToUserInventory() | 340 | public void TestReplicateArchivePathToUserInventory() |
338 | { | 341 | { |
342 | TestHelper.InMethod(); | ||
339 | CommunicationsManager commsManager = new TestCommunicationsManager(); | 343 | CommunicationsManager commsManager = new TestCommunicationsManager(); |
340 | CachedUserInfo userInfo = UserProfileTestUtils.CreateUserWithInventory(commsManager); | 344 | CachedUserInfo userInfo = UserProfileTestUtils.CreateUserWithInventory(commsManager); |
341 | Dictionary <string, InventoryFolderImpl> foldersCreated = new Dictionary<string, InventoryFolderImpl>(); | 345 | Dictionary <string, InventoryFolderImpl> foldersCreated = new Dictionary<string, InventoryFolderImpl>(); |
diff --git a/OpenSim/Region/CoreModules/World/Archiver/Tests/ArchiverTests.cs b/OpenSim/Region/CoreModules/World/Archiver/Tests/ArchiverTests.cs index af789aa..7037141 100644 --- a/OpenSim/Region/CoreModules/World/Archiver/Tests/ArchiverTests.cs +++ b/OpenSim/Region/CoreModules/World/Archiver/Tests/ArchiverTests.cs | |||
@@ -79,6 +79,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver.Tests | |||
79 | [Test] | 79 | [Test] |
80 | public void TestSaveOarV0p2() | 80 | public void TestSaveOarV0p2() |
81 | { | 81 | { |
82 | TestHelper.InMethod(); | ||
82 | //log4net.Config.XmlConfigurator.Configure(); | 83 | //log4net.Config.XmlConfigurator.Configure(); |
83 | 84 | ||
84 | ArchiverModule archiverModule = new ArchiverModule(); | 85 | ArchiverModule archiverModule = new ArchiverModule(); |
@@ -202,6 +203,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver.Tests | |||
202 | [Test] | 203 | [Test] |
203 | public void TestLoadOarV0p2() | 204 | public void TestLoadOarV0p2() |
204 | { | 205 | { |
206 | TestHelper.InMethod(); | ||
205 | //log4net.Config.XmlConfigurator.Configure(); | 207 | //log4net.Config.XmlConfigurator.Configure(); |
206 | 208 | ||
207 | MemoryStream archiveWriteStream = new MemoryStream(); | 209 | MemoryStream archiveWriteStream = new MemoryStream(); |
@@ -277,6 +279,7 @@ namespace OpenSim.Region.CoreModules.World.Archiver.Tests | |||
277 | //[Test] | 279 | //[Test] |
278 | public void TestMergeOarV0p2() | 280 | public void TestMergeOarV0p2() |
279 | { | 281 | { |
282 | TestHelper.InMethod(); | ||
280 | //XmlConfigurator.Configure(); | 283 | //XmlConfigurator.Configure(); |
281 | 284 | ||
282 | MemoryStream archiveWriteStream = new MemoryStream(); | 285 | MemoryStream archiveWriteStream = new MemoryStream(); |
diff --git a/OpenSim/Region/Framework/Scenes/Tests/EntityManagerTests.cs b/OpenSim/Region/Framework/Scenes/Tests/EntityManagerTests.cs index d1ef686..10c2039 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/EntityManagerTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/EntityManagerTests.cs | |||
@@ -52,6 +52,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
52 | [Test] | 52 | [Test] |
53 | public void T010_AddObjects() | 53 | public void T010_AddObjects() |
54 | { | 54 | { |
55 | TestHelper.InMethod(); | ||
55 | // Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 56 | // Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); |
56 | 57 | ||
57 | random = new Random(); | 58 | random = new Random(); |
@@ -87,6 +88,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
87 | [Test] | 88 | [Test] |
88 | public void T011_ThreadAddRemoveTest() | 89 | public void T011_ThreadAddRemoveTest() |
89 | { | 90 | { |
91 | TestHelper.InMethod(); | ||
90 | // Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 92 | // Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); |
91 | 93 | ||
92 | // This test adds and removes with mutiple threads, attempting to break the | 94 | // This test adds and removes with mutiple threads, attempting to break the |
diff --git a/OpenSim/Region/Framework/Scenes/Tests/SceneObjectBasicTests.cs b/OpenSim/Region/Framework/Scenes/Tests/SceneObjectBasicTests.cs index 5c3d653..8a17ee7 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/SceneObjectBasicTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/SceneObjectBasicTests.cs | |||
@@ -53,8 +53,8 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
53 | [Test, LongRunning] | 53 | [Test, LongRunning] |
54 | public void TestAddSceneObject() | 54 | public void TestAddSceneObject() |
55 | { | 55 | { |
56 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 56 | TestHelper.InMethod(); |
57 | 57 | ||
58 | Scene scene = SceneSetupHelpers.SetupScene(); | 58 | Scene scene = SceneSetupHelpers.SetupScene(); |
59 | SceneObjectPart part = SceneSetupHelpers.AddSceneObject(scene); | 59 | SceneObjectPart part = SceneSetupHelpers.AddSceneObject(scene); |
60 | SceneObjectPart retrievedPart = scene.GetSceneObjectPart(part.LocalId); | 60 | SceneObjectPart retrievedPart = scene.GetSceneObjectPart(part.LocalId); |
@@ -70,7 +70,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
70 | [Test] | 70 | [Test] |
71 | public void TestDeleteSceneObject() | 71 | public void TestDeleteSceneObject() |
72 | { | 72 | { |
73 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 73 | TestHelper.InMethod(); |
74 | 74 | ||
75 | TestScene scene = SceneSetupHelpers.SetupScene(); | 75 | TestScene scene = SceneSetupHelpers.SetupScene(); |
76 | SceneObjectPart part = SceneSetupHelpers.AddSceneObject(scene); | 76 | SceneObjectPart part = SceneSetupHelpers.AddSceneObject(scene); |
@@ -86,7 +86,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
86 | [Test] | 86 | [Test] |
87 | public void TestDeleteSceneObjectAsync() | 87 | public void TestDeleteSceneObjectAsync() |
88 | { | 88 | { |
89 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 89 | TestHelper.InMethod(); |
90 | 90 | ||
91 | UUID agentId = UUID.Parse("00000000-0000-0000-0000-000000000001"); | 91 | UUID agentId = UUID.Parse("00000000-0000-0000-0000-000000000001"); |
92 | 92 | ||
@@ -115,7 +115,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
115 | [Test] | 115 | [Test] |
116 | public void TestDeleteSceneObjectAsyncToUserInventory() | 116 | public void TestDeleteSceneObjectAsyncToUserInventory() |
117 | { | 117 | { |
118 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 118 | TestHelper.InMethod(); |
119 | //log4net.Config.XmlConfigurator.Configure(); | 119 | //log4net.Config.XmlConfigurator.Configure(); |
120 | 120 | ||
121 | UUID agentId = UUID.Parse("00000000-0000-0000-0000-000000000001"); | 121 | UUID agentId = UUID.Parse("00000000-0000-0000-0000-000000000001"); |
diff --git a/OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs b/OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs index d62ce1f..8a1fa29 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs | |||
@@ -35,6 +35,7 @@ using OpenSim.Framework.Communications; | |||
35 | using OpenSim.Framework.Communications.Cache; | 35 | using OpenSim.Framework.Communications.Cache; |
36 | using OpenSim.Region.Communications.Local; | 36 | using OpenSim.Region.Communications.Local; |
37 | using OpenSim.Region.Framework.Scenes; | 37 | using OpenSim.Region.Framework.Scenes; |
38 | using OpenSim.Tests.Common; | ||
38 | using OpenSim.Tests.Common.Mock; | 39 | using OpenSim.Tests.Common.Mock; |
39 | using OpenSim.Tests.Common.Setup; | 40 | using OpenSim.Tests.Common.Setup; |
40 | using log4net; | 41 | using log4net; |
@@ -52,7 +53,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
52 | [Test] | 53 | [Test] |
53 | public void TestLinkDelink2SceneObjects() | 54 | public void TestLinkDelink2SceneObjects() |
54 | { | 55 | { |
55 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 56 | TestHelper.InMethod(); |
56 | 57 | ||
57 | bool debugtest = false; | 58 | bool debugtest = false; |
58 | 59 | ||
@@ -130,7 +131,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
130 | [Test] | 131 | [Test] |
131 | public void TestLinkDelink2groups4SceneObjects() | 132 | public void TestLinkDelink2groups4SceneObjects() |
132 | { | 133 | { |
133 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 134 | TestHelper.InMethod(); |
134 | 135 | ||
135 | bool debugtest = false; | 136 | bool debugtest = false; |
136 | 137 | ||
diff --git a/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTests.cs b/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTests.cs index 2903766..8801176 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/ScenePresenceTests.cs | |||
@@ -42,6 +42,7 @@ using OpenSim.Region.Framework.Scenes; | |||
42 | using OpenSim.Region.Framework.Interfaces; | 42 | using OpenSim.Region.Framework.Interfaces; |
43 | using OpenSim.Region.CoreModules.ServiceConnectors.Interregion; | 43 | using OpenSim.Region.CoreModules.ServiceConnectors.Interregion; |
44 | using OpenSim.Region.CoreModules.World.Serialiser; | 44 | using OpenSim.Region.CoreModules.World.Serialiser; |
45 | using OpenSim.Tests.Common; | ||
45 | using OpenSim.Tests.Common.Mock; | 46 | using OpenSim.Tests.Common.Mock; |
46 | using OpenSim.Tests.Common.Setup; | 47 | using OpenSim.Tests.Common.Setup; |
47 | 48 | ||
@@ -99,7 +100,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
99 | [Test] | 100 | [Test] |
100 | public void T010_TestAddRootAgent() | 101 | public void T010_TestAddRootAgent() |
101 | { | 102 | { |
102 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 103 | TestHelper.InMethod(); |
103 | 104 | ||
104 | string firstName = "testfirstname"; | 105 | string firstName = "testfirstname"; |
105 | 106 | ||
@@ -133,7 +134,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
133 | [Test] | 134 | [Test] |
134 | public void T011_TestRemoveRootAgent() | 135 | public void T011_TestRemoveRootAgent() |
135 | { | 136 | { |
136 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 137 | TestHelper.InMethod(); |
137 | 138 | ||
138 | scene.RemoveClient(agent1); | 139 | scene.RemoveClient(agent1); |
139 | 140 | ||
@@ -145,7 +146,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
145 | [Test] | 146 | [Test] |
146 | public void T012_TestAddNeighbourRegion() | 147 | public void T012_TestAddNeighbourRegion() |
147 | { | 148 | { |
148 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 149 | TestHelper.InMethod(); |
149 | 150 | ||
150 | string reason; | 151 | string reason; |
151 | scene.NewUserConnection(acd1, out reason); | 152 | scene.NewUserConnection(acd1, out reason); |
@@ -167,7 +168,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
167 | [Test] | 168 | [Test] |
168 | public void T013_TestRemoveNeighbourRegion() | 169 | public void T013_TestRemoveNeighbourRegion() |
169 | { | 170 | { |
170 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 171 | TestHelper.InMethod(); |
171 | 172 | ||
172 | ScenePresence presence = scene.GetScenePresence(agent1); | 173 | ScenePresence presence = scene.GetScenePresence(agent1); |
173 | presence.RemoveNeighbourRegion(region3); | 174 | presence.RemoveNeighbourRegion(region3); |
@@ -184,7 +185,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
184 | [Test] | 185 | [Test] |
185 | public void T020_TestMakeRootAgent() | 186 | public void T020_TestMakeRootAgent() |
186 | { | 187 | { |
187 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 188 | TestHelper.InMethod(); |
188 | 189 | ||
189 | ScenePresence presence = scene.GetScenePresence(agent1); | 190 | ScenePresence presence = scene.GetScenePresence(agent1); |
190 | Assert.That(presence.IsChildAgent, Is.False, "Starts out as a root agent"); | 191 | Assert.That(presence.IsChildAgent, Is.False, "Starts out as a root agent"); |
@@ -202,7 +203,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
202 | [Test] | 203 | [Test] |
203 | public void T021_TestCrossToNewRegion() | 204 | public void T021_TestCrossToNewRegion() |
204 | { | 205 | { |
205 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 206 | TestHelper.InMethod(); |
206 | 207 | ||
207 | // Adding child agent to region 1001 | 208 | // Adding child agent to region 1001 |
208 | string reason; | 209 | string reason; |
@@ -295,7 +296,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
295 | [Test] | 296 | [Test] |
296 | public void T030_TestAddAttachments() | 297 | public void T030_TestAddAttachments() |
297 | { | 298 | { |
298 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 299 | TestHelper.InMethod(); |
299 | 300 | ||
300 | ScenePresence presence = scene.GetScenePresence(agent1); | 301 | ScenePresence presence = scene.GetScenePresence(agent1); |
301 | 302 | ||
@@ -310,7 +311,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
310 | [Test] | 311 | [Test] |
311 | public void T031_RemoveAttachments() | 312 | public void T031_RemoveAttachments() |
312 | { | 313 | { |
313 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 314 | TestHelper.InMethod(); |
314 | 315 | ||
315 | ScenePresence presence = scene.GetScenePresence(agent1); | 316 | ScenePresence presence = scene.GetScenePresence(agent1); |
316 | presence.RemoveAttachment(sog1); | 317 | presence.RemoveAttachment(sog1); |
@@ -322,7 +323,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
322 | [Test] | 323 | [Test] |
323 | public void T032_CrossAttachments() | 324 | public void T032_CrossAttachments() |
324 | { | 325 | { |
325 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 326 | TestHelper.InMethod(); |
326 | 327 | ||
327 | ScenePresence presence = scene.GetScenePresence(agent1); | 328 | ScenePresence presence = scene.GetScenePresence(agent1); |
328 | ScenePresence presence2 = scene2.GetScenePresence(agent1); | 329 | ScenePresence presence2 = scene2.GetScenePresence(agent1); |
@@ -342,7 +343,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
342 | 343 | ||
343 | public static string GetRandomCapsObjectPath() | 344 | public static string GetRandomCapsObjectPath() |
344 | { | 345 | { |
345 | Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 346 | TestHelper.InMethod(); |
346 | 347 | ||
347 | UUID caps = UUID.Random(); | 348 | UUID caps = UUID.Random(); |
348 | string capsPath = caps.ToString(); | 349 | string capsPath = caps.ToString(); |
diff --git a/OpenSim/Region/Framework/Scenes/Tests/StandaloneTeleportTests.cs b/OpenSim/Region/Framework/Scenes/Tests/StandaloneTeleportTests.cs index 2618da6..5356ae8 100644 --- a/OpenSim/Region/Framework/Scenes/Tests/StandaloneTeleportTests.cs +++ b/OpenSim/Region/Framework/Scenes/Tests/StandaloneTeleportTests.cs | |||
@@ -54,6 +54,8 @@ namespace OpenSim.Region.Framework.Scenes.Tests | |||
54 | [Test, LongRunning] | 54 | [Test, LongRunning] |
55 | public void TestSimpleNotNeighboursTeleport() | 55 | public void TestSimpleNotNeighboursTeleport() |
56 | { | 56 | { |
57 | TestHelper.InMethod(); | ||
58 | |||
57 | // Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); | 59 | // Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod()); |
58 | 60 | ||
59 | log4net.Config.XmlConfigurator.Configure(); | 61 | log4net.Config.XmlConfigurator.Configure(); |