aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
authorUbitUmarov2015-09-02 19:54:53 +0100
committerUbitUmarov2015-09-02 19:54:53 +0100
commita11edceb00b5b86f825bd957bdac9edb91f893dd (patch)
treec192eae26f3aadf365a66f32fc6d9ade2f0a0c61 /OpenSim/Tests
parentbad merge? (diff)
downloadopensim-SC_OLD-a11edceb00b5b86f825bd957bdac9edb91f893dd.zip
opensim-SC_OLD-a11edceb00b5b86f825bd957bdac9edb91f893dd.tar.gz
opensim-SC_OLD-a11edceb00b5b86f825bd957bdac9edb91f893dd.tar.bz2
opensim-SC_OLD-a11edceb00b5b86f825bd957bdac9edb91f893dd.tar.xz
seems to compile ( tests comented out)
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/Helpers/SceneHelpers.cs13
-rw-r--r--OpenSim/Tests/Common/Mock/TestScene.cs3
2 files changed, 0 insertions, 16 deletions
diff --git a/OpenSim/Tests/Common/Helpers/SceneHelpers.cs b/OpenSim/Tests/Common/Helpers/SceneHelpers.cs
index 9ed3eae..b368822 100644
--- a/OpenSim/Tests/Common/Helpers/SceneHelpers.cs
+++ b/OpenSim/Tests/Common/Helpers/SceneHelpers.cs
@@ -152,22 +152,13 @@ namespace OpenSim.Tests.Common
152 152
153 PhysicsPluginManager physicsPluginManager = new PhysicsPluginManager(); 153 PhysicsPluginManager physicsPluginManager = new PhysicsPluginManager();
154 physicsPluginManager.LoadPluginsFromAssembly("Physics/OpenSim.Region.Physics.BasicPhysicsPlugin.dll"); 154 physicsPluginManager.LoadPluginsFromAssembly("Physics/OpenSim.Region.Physics.BasicPhysicsPlugin.dll");
155<<<<<<< HEAD
156 Vector3 regionExtent = new Vector3( regInfo.RegionSizeX, regInfo.RegionSizeY, regInfo.RegionSizeZ);
157 PhysicsScene physicsScene
158=======
159 Vector3 regionExtent = new Vector3(regInfo.RegionSizeX, regInfo.RegionSizeY, regInfo.RegionSizeZ); 155 Vector3 regionExtent = new Vector3(regInfo.RegionSizeX, regInfo.RegionSizeY, regInfo.RegionSizeZ);
160 PhysicsScene physicsScene 156 PhysicsScene physicsScene
161>>>>>>> avn/ubitvar
162 = physicsPluginManager.GetPhysicsScene( 157 = physicsPluginManager.GetPhysicsScene(
163 "basicphysics", "ZeroMesher", new IniConfigSource(), "test", regionExtent); 158 "basicphysics", "ZeroMesher", new IniConfigSource(), "test", regionExtent);
164 159
165 TestScene testScene = new TestScene( 160 TestScene testScene = new TestScene(
166<<<<<<< HEAD
167 regInfo, m_acm, physicsScene, scs, SimDataService, m_estateDataService, configSource, null); 161 regInfo, m_acm, physicsScene, scs, SimDataService, m_estateDataService, configSource, null);
168=======
169 regInfo, m_acm, physicsScene, scs, m_simDataService, m_estateDataService, configSource, null);
170>>>>>>> avn/ubitvar
171 162
172 INonSharedRegionModule godsModule = new GodsModule(); 163 INonSharedRegionModule godsModule = new GodsModule();
173 godsModule.Initialise(new IniConfigSource()); 164 godsModule.Initialise(new IniConfigSource());
@@ -210,11 +201,7 @@ namespace OpenSim.Tests.Common
210 testScene.SetModuleInterfaces(); 201 testScene.SetModuleInterfaces();
211 202
212 testScene.LandChannel = new TestLandChannel(testScene); 203 testScene.LandChannel = new TestLandChannel(testScene);
213<<<<<<< HEAD
214 testScene.LoadWorldMap();
215=======
216 testScene.LoadWorldMap(); 204 testScene.LoadWorldMap();
217>>>>>>> avn/ubitvar
218 205
219 testScene.RegionInfo.EstateSettings = new EstateSettings(); 206 testScene.RegionInfo.EstateSettings = new EstateSettings();
220 testScene.LoginsEnabled = true; 207 testScene.LoginsEnabled = true;
diff --git a/OpenSim/Tests/Common/Mock/TestScene.cs b/OpenSim/Tests/Common/Mock/TestScene.cs
index e559871..45acf91 100644
--- a/OpenSim/Tests/Common/Mock/TestScene.cs
+++ b/OpenSim/Tests/Common/Mock/TestScene.cs
@@ -34,10 +34,7 @@ using OpenSim.Region.Framework;
34using OpenSim.Region.Framework.Interfaces; 34using OpenSim.Region.Framework.Interfaces;
35using OpenSim.Region.Framework.Scenes; 35using OpenSim.Region.Framework.Scenes;
36using OpenSim.Region.Physics.Manager; 36using OpenSim.Region.Physics.Manager;
37<<<<<<< HEAD
38using OpenSim.Services.Interfaces; 37using OpenSim.Services.Interfaces;
39=======
40>>>>>>> avn/ubitvar
41 38
42namespace OpenSim.Tests.Common 39namespace OpenSim.Tests.Common
43{ 40{