aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-03-27 16:33:15 +0000
committerJustin Clarke Casey2009-03-27 16:33:15 +0000
commit355247c2b257cd6f0688c9b378008840f4d43632 (patch)
tree16fd0d170c8e7c93035792ae16afe986f2f5c1d9 /OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs
parentAdded the hg login procedure to the user server. (diff)
downloadopensim-SC_OLD-355247c2b257cd6f0688c9b378008840f4d43632.zip
opensim-SC_OLD-355247c2b257cd6f0688c9b378008840f4d43632.tar.gz
opensim-SC_OLD-355247c2b257cd6f0688c9b378008840f4d43632.tar.bz2
opensim-SC_OLD-355247c2b257cd6f0688c9b378008840f4d43632.tar.xz
* For each test in OpenSim.Region.Framework.Scenes.Tests, tell the console when the test starts
* This is to help identify which test is freezing, since all the tests in the previous dll (coremodules) succeed * Unfortunately they are not executed in the same order in which the results are listed in Bamboo
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs b/OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs
index 003fef2..fe6b0e7 100644
--- a/OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs
+++ b/OpenSim/Region/Framework/Scenes/Tests/SceneObjectLinkingTests.cs
@@ -26,6 +26,7 @@
26 */ 26 */
27 27
28using System; 28using System;
29using System.Reflection;
29using NUnit.Framework; 30using NUnit.Framework;
30using NUnit.Framework.SyntaxHelpers; 31using NUnit.Framework.SyntaxHelpers;
31using OpenMetaverse; 32using OpenMetaverse;
@@ -52,6 +53,8 @@ namespace OpenSim.Region.Framework.Scenes.Tests
52 [Test] 53 [Test]
53 public void TestLinkDelink2SceneObjects() 54 public void TestLinkDelink2SceneObjects()
54 { 55 {
56 Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod());
57
55 bool debugtest = false; 58 bool debugtest = false;
56 59
57 Scene scene = SceneSetupHelpers.SetupScene(); 60 Scene scene = SceneSetupHelpers.SetupScene();
@@ -122,12 +125,14 @@ namespace OpenSim.Region.Framework.Scenes.Tests
122 m_log.Debug("Group2: Prim2: OffsetPosition:" + part2.AbsolutePosition + ", OffsetRotation:" + part2.RotationOffset); 125 m_log.Debug("Group2: Prim2: OffsetPosition:" + part2.AbsolutePosition + ", OffsetRotation:" + part2.RotationOffset);
123 126
124 Assert.That(grp1.Children.Count, Is.EqualTo(1), "Group 1 still contained part2 after delink."); 127 Assert.That(grp1.Children.Count, Is.EqualTo(1), "Group 1 still contained part2 after delink.");
125 Assert.That(part2.AbsolutePosition == Vector3.Zero); 128 Assert.That(part2.AbsolutePosition == Vector3.Zero);
126 } 129 }
127 130
128 [Test] 131 [Test]
129 public void TestLinkDelink2groups4SceneObjects() 132 public void TestLinkDelink2groups4SceneObjects()
130 { 133 {
134 Console.WriteLine("Beginning test {0}", MethodBase.GetCurrentMethod());
135
131 bool debugtest = false; 136 bool debugtest = false;
132 137
133 Scene scene = SceneSetupHelpers.SetupScene(); 138 Scene scene = SceneSetupHelpers.SetupScene();