diff options
author | Justin Clark-Casey (justincc) | 2011-12-05 21:04:17 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-12-05 21:04:17 +0000 |
commit | 319507f5215f5705cbe80d0c468da15ffe778829 (patch) | |
tree | 0362f3d98fb4419c630b6418f2b3a9c8f72d95c7 /prebuild.xml | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-319507f5215f5705cbe80d0c468da15ffe778829.zip opensim-SC_OLD-319507f5215f5705cbe80d0c468da15ffe778829.tar.gz opensim-SC_OLD-319507f5215f5705cbe80d0c468da15ffe778829.tar.bz2 opensim-SC_OLD-319507f5215f5705cbe80d0c468da15ffe778829.tar.xz |
Add test for not found response from GetTexture cap handler.
Add OpenSim.Region.Capabilities.Handlers.Tests.dll into test suite
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml index 05d9545..e951187 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -2729,6 +2729,56 @@ | |||
2729 | </Project> | 2729 | </Project> |
2730 | 2730 | ||
2731 | 2731 | ||
2732 | <Project frameworkVersion="v3_5" name="OpenSim.Capabilities.Handlers.Tests" path="OpenSim/Capabilities/Handlers" type="Library"> | ||
2733 | <Configuration name="Debug"> | ||
2734 | <Options> | ||
2735 | <OutputPath>../../../bin/</OutputPath> | ||
2736 | </Options> | ||
2737 | </Configuration> | ||
2738 | <Configuration name="Release"> | ||
2739 | <Options> | ||
2740 | <OutputPath>../../../bin/</OutputPath> | ||
2741 | </Options> | ||
2742 | </Configuration> | ||
2743 | |||
2744 | <ReferencePath>../../../bin/</ReferencePath> | ||
2745 | <Reference name="System"/> | ||
2746 | <Reference name="System.Core"/> | ||
2747 | <Reference name="System.Drawing"/> | ||
2748 | <Reference name="System.Xml"/> | ||
2749 | <Reference name="System.Web"/> | ||
2750 | <Reference name="nunit.framework" path="../../../bin/"/> | ||
2751 | <Reference name="OpenMetaverse" path="../../../bin/"/> | ||
2752 | <Reference name="OpenMetaverseTypes" path="../../../bin/"/> | ||
2753 | <Reference name="OpenMetaverse.StructuredData" path="../../../bin/"/> | ||
2754 | <Reference name="OpenSim.Capabilities"/> | ||
2755 | <Reference name="OpenSim.Capabilities.Handlers"/> | ||
2756 | <Reference name="OpenSim.Framework"/> | ||
2757 | <Reference name="OpenSim.Framework.Console"/> | ||
2758 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
2759 | <Reference name="OpenSim.Region.Framework"/> | ||
2760 | <Reference name="OpenSim.Server.Base"/> | ||
2761 | <Reference name="OpenSim.Server.Handlers"/> | ||
2762 | <Reference name="OpenSim.Services.Base"/> | ||
2763 | <Reference name="OpenSim.Services.Interfaces"/> | ||
2764 | <Reference name="OpenSim.Tests.Common"/> | ||
2765 | <Reference name="Nini" path="../../../bin/"/> | ||
2766 | <Reference name="log4net" path="../../../bin/"/> | ||
2767 | <Reference name="DotNetOpenId" path="../../../bin/"/> | ||
2768 | |||
2769 | <!-- | ||
2770 | TODO: this is kind of lame, we basically build a duplicate | ||
2771 | assembly but with tests added in, just so that we don't | ||
2772 | need to hard code in a bunch of Test directories here. If | ||
2773 | pattern="Tests/*.cs" worked, we wouldn't need this. | ||
2774 | --> | ||
2775 | <Files> | ||
2776 | <!-- SADLY the way this works means you need to keep adding these paths --> | ||
2777 | <Match path="GetTexture/Tests" pattern="*.cs" recurse="true"/> | ||
2778 | </Files> | ||
2779 | </Project> | ||
2780 | |||
2781 | |||
2732 | <Project frameworkVersion="v3_5" name="OpenSim.Data.Tests" path="OpenSim/Data/Tests" type="Library"> | 2782 | <Project frameworkVersion="v3_5" name="OpenSim.Data.Tests" path="OpenSim/Data/Tests" type="Library"> |
2733 | <Configuration name="Debug"> | 2783 | <Configuration name="Debug"> |
2734 | <Options> | 2784 | <Options> |