diff options
author | Justin Clark-Casey (justincc) | 2012-01-31 19:56:37 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-01-31 19:56:37 +0000 |
commit | f3780b9eaeae8834c49f6e2f6045ef922916924d (patch) | |
tree | 59c334a043cbf9d3bf6c50527cadacd2fcc652f7 /prebuild.xml | |
parent | Fix:llSetText - limited text to a maximum of 254 chars (diff) | |
download | opensim-SC_OLD-f3780b9eaeae8834c49f6e2f6045ef922916924d.zip opensim-SC_OLD-f3780b9eaeae8834c49f6e2f6045ef922916924d.tar.gz opensim-SC_OLD-f3780b9eaeae8834c49f6e2f6045ef922916924d.tar.bz2 opensim-SC_OLD-f3780b9eaeae8834c49f6e2f6045ef922916924d.tar.xz |
Add torture tests to test adding 10,000, 100,000 and 200,000 single prim scene objects.
These can be run using the "nant torture" target. They are not part of "nant test" due to their long-run future nature.
Such tests are designed to do some testing of extreme situations and give some feedback on memory usage, etc.
However, data can be inconsistent due to different machine circumstances and virtual machine actions.
This area is under development.
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/prebuild.xml b/prebuild.xml index eebb9f9..65383ee 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -2822,7 +2822,6 @@ | |||
2822 | </Files> | 2822 | </Files> |
2823 | </Project> | 2823 | </Project> |
2824 | 2824 | ||
2825 | |||
2826 | <Project frameworkVersion="v3_5" name="OpenSim.Framework.Tests" path="OpenSim/Framework/Tests" type="Library"> | 2825 | <Project frameworkVersion="v3_5" name="OpenSim.Framework.Tests" path="OpenSim/Framework/Tests" type="Library"> |
2827 | <Configuration name="Debug"> | 2826 | <Configuration name="Debug"> |
2828 | <Options> | 2827 | <Options> |
@@ -3259,6 +3258,39 @@ | |||
3259 | </Files> | 3258 | </Files> |
3260 | </Project> | 3259 | </Project> |
3261 | 3260 | ||
3261 | <Project frameworkVersion="v3_5" name="OpenSim.Tests.Torture" path="OpenSim/Tests/Torture" type="Library"> | ||
3262 | <Configuration name="Debug"> | ||
3263 | <Options> | ||
3264 | <OutputPath>../../../bin/</OutputPath> | ||
3265 | </Options> | ||
3266 | </Configuration> | ||
3267 | <Configuration name="Release"> | ||
3268 | <Options> | ||
3269 | <OutputPath>../../../bin/</OutputPath> | ||
3270 | </Options> | ||
3271 | </Configuration> | ||
3272 | |||
3273 | <ReferencePath>../../../bin/</ReferencePath> | ||
3274 | <Reference name="System"/> | ||
3275 | <Reference name="System.Xml"/> | ||
3276 | <Reference name="System.Data"/> | ||
3277 | <Reference name="log4net" path="../../../bin/"/> | ||
3278 | <Reference name="Nini" path="../../../bin/"/> | ||
3279 | <Reference name="nunit.framework" path="../../../bin/"/> | ||
3280 | <Reference name="OpenMetaverse" path="../../../bin/"/> | ||
3281 | <Reference name="OpenMetaverseTypes" path="../../../bin/"/> | ||
3282 | <Reference name="OpenMetaverse.StructuredData" path="../../../bin/"/> | ||
3283 | <Reference name="XMLRPC" path="../../../bin/"/> | ||
3284 | <Reference name="OpenSim.Framework"/> | ||
3285 | <Reference name="OpenSim.Framework.Console"/> | ||
3286 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
3287 | <Reference name="OpenSim.Region.Framework"/> | ||
3288 | <Reference name="OpenSim.Tests.Common"/> | ||
3289 | <Files> | ||
3290 | <Match pattern="*.cs" recurse="false"/> | ||
3291 | </Files> | ||
3292 | </Project> | ||
3293 | |||
3262 | <?include file="addon-modules/*/prebuild*.xml" ?> | 3294 | <?include file="addon-modules/*/prebuild*.xml" ?> |
3263 | 3295 | ||
3264 | </Solution> | 3296 | </Solution> |