aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Setup
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-03-12 18:13:51 +0000
committerJustin Clarke Casey2009-03-12 18:13:51 +0000
commita02c3caa0d65af384b9f3e5afe233a2c8de60d48 (patch)
tree35bbdf45f983a0bf60328fac7b70ad9cc9320ea7 /OpenSim/Tests/Common/Setup
parent - renaming OpenSim.ini.example to OpenSim.ini.example.preview as (diff)
downloadopensim-SC_OLD-a02c3caa0d65af384b9f3e5afe233a2c8de60d48.zip
opensim-SC_OLD-a02c3caa0d65af384b9f3e5afe233a2c8de60d48.tar.gz
opensim-SC_OLD-a02c3caa0d65af384b9f3e5afe233a2c8de60d48.tar.bz2
opensim-SC_OLD-a02c3caa0d65af384b9f3e5afe233a2c8de60d48.tar.xz
* Move SceneObject tests into their proper namespace
* Add some more debug code to narrow down where the tests are freezing
Diffstat (limited to 'OpenSim/Tests/Common/Setup')
-rw-r--r--OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs b/OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs
index bcc9426..5d35e35 100644
--- a/OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs
+++ b/OpenSim/Tests/Common/Setup/SceneSetupHelpers.cs
@@ -25,6 +25,7 @@
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28using System;
28using System.Net; 29using System.Net;
29using Nini.Config; 30using Nini.Config;
30using OpenMetaverse; 31using OpenMetaverse;
@@ -66,6 +67,8 @@ namespace OpenSim.Tests.Common.Setup
66 /// <returns></returns> 67 /// <returns></returns>
67 public static TestScene SetupScene(string name, UUID id, uint x, uint y, CommunicationsManager cm) 68 public static TestScene SetupScene(string name, UUID id, uint x, uint y, CommunicationsManager cm)
68 { 69 {
70 Console.WriteLine("Setting up test scene {0}", name);
71
69 RegionInfo regInfo = new RegionInfo(x, y, new IPEndPoint(IPAddress.Loopback, 9000), "127.0.0.1"); 72 RegionInfo regInfo = new RegionInfo(x, y, new IPEndPoint(IPAddress.Loopback, 9000), "127.0.0.1");
70 regInfo.RegionName = name; 73 regInfo.RegionName = name;
71 regInfo.RegionID = id; 74 regInfo.RegionID = id;