aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/XEngine/Tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang3-14/+30
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel3-4/+350
2012-11-24Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)1-1/+1
automatically turns off any logging enabled between tests
2012-10-31Make "show object part" command correctly display script status.Justin Clark-Casey (justincc)1-2/+8
Uses new IEntityInventory.TryGetScriptInstanceRunning() Makes it clearer that TaskInventoryItem.ScriptRunning cannot be used as it is temporary and not updated.
2012-07-11Allow XEngine StartDelay to be configured in the [XEngine] config section.Justin Clark-Casey (justincc)1-0/+1
This is only currently meant for use by regression tests that don't have any issues if XEngine is started up quickly, since no other operations will be occuring simultaneously. Therefore, this is not yet documented externally.
2012-07-11Remove WorldComm module from the regression TestCompileAndStartScript() ↵Justin Clark-Casey (justincc)1-4/+1
since the infrastructure no longer fails if this module isn't present, at least on the tested codepaths
2012-04-27Add regression test for teleporting an agent between separated regions on ↵Justin Clark-Casey (justincc)1-1/+1
the same simulator. This involves a large amount of change in test scene setup code to allow test scenes to share shared modules SetupScene is now an instance method that requires an instantiation of SceneHelpers, though other SceneHelpers methods are still static May split these out into separate classes in the future.
2012-02-07Add a regression test to compile and start a script. Remove ↵Justin Clark-Casey (justincc)1-20/+76
Path.GetDirectoryName when getting assembly loading path in Compiler.CompileFromDotNetText(). The Path.GetDirectoryName call in Compiler.CompileFromDotNetText is unnecessary since AppDomain.CurrentDomain.BaseDirectory is always a directory. Later path concatenation is already done by Path.Combine() which handles any trailing slash. Removing Path.GetDirectoryName() will not affect the runtime but allows NUnit to work since it doesn't add a trailing slash to AppDomain.CurrentDomain.BaseDirectory.
2011-05-21Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)1-1/+0
OpenSim.Tests.Common instead
2009-08-15* whoops, missing a /Teravus Ovares (Dan Olivares)1-1/+1
2009-08-15* Comment out XEngineTest that doesn't appear to test anything. It just ↵Teravus Ovares (Dan Olivares)1-0/+3
creates a scene named 'My Test' which just happens to be the last scene displayed in the nunit log before it goes boom.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-04-15Convert both script engines to new region module format. Add proper unloadMelanie Thielker1-2/+2
handling to XEngine. Add needed stubs to DotNetEngine.
2009-02-13Fix some compiler warnings. Minor formatting cleanup.Jeff Ames1-2/+2
2009-02-12* Added XEngine tests and gathered other ScriptEngineSean Dague1-0/+68
Tests together From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>