Add regression test for teleporting between neighbouring regions on the same simulator

This adds a non-advertised wait_for_callback option in [EntityTransfer].  Default is always true.
Teleport tests disable the wait for callback from the destination region in order to run within a single thread.
This commit is contained in:
Justin Clark-Casey (justincc)
2012-05-01 23:14:12 +01:00
parent 5786521103
commit 9d2e1c67a8
10 changed files with 248 additions and 33 deletions

View File

@@ -79,7 +79,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
J2KDecoderModule j2kdm = new J2KDecoderModule();
scene = new SceneHelpers().SetupScene();
SceneHelpers sceneHelpers = new SceneHelpers();
scene = sceneHelpers.SetupScene();
SceneHelpers.SetupSceneModules(scene, j2kdm);
tc = new TestClient(SceneHelpers.GenerateAgentData(userId), scene);

View File

@@ -111,7 +111,7 @@ namespace OpenSim.Region.ClientStack
server.Start();
}
}
base.StartupSpecific();
}