diff options
author | Diva Canto | 2015-05-10 21:04:46 -0700 |
---|---|---|
committer | Diva Canto | 2015-05-10 21:04:46 -0700 |
commit | c2cf22ea4fc42d8582aa6aa2df48a3ce06813d56 (patch) | |
tree | 67002a585778c1a1729bf5831f27f4e61c861e04 /prebuild.xml | |
parent | Improved comments on fetch inventory tests (diff) | |
download | opensim-SC-c2cf22ea4fc42d8582aa6aa2df48a3ce06813d56.zip opensim-SC-c2cf22ea4fc42d8582aa6aa2df48a3ce06813d56.tar.gz opensim-SC-c2cf22ea4fc42d8582aa6aa2df48a3ce06813d56.tar.bz2 opensim-SC-c2cf22ea4fc42d8582aa6aa2df48a3ce06813d56.tar.xz |
Added the beginning of a new test framework for robust connectors and services. For now, just Grid and Presence. This framework starts a robust server (as a thread) listening on a port in localhost, then the tests are client code.
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml index c46740b..c778943 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -2661,6 +2661,41 @@ | |||
2661 | </Project> | 2661 | </Project> |
2662 | 2662 | ||
2663 | <!-- Test Clients --> | 2663 | <!-- Test Clients --> |
2664 | <Project frameworkVersion="v4_0" name="Robust.Tests" path="OpenSim/Tests/Robust" type="Library"> | ||
2665 | <Configuration name="Debug"> | ||
2666 | <Options> | ||
2667 | <OutputPath>../../../bin/</OutputPath> | ||
2668 | </Options> | ||
2669 | </Configuration> | ||
2670 | <Configuration name="Release"> | ||
2671 | <Options> | ||
2672 | <OutputPath>../../../bin/</OutputPath> | ||
2673 | </Options> | ||
2674 | </Configuration> | ||
2675 | |||
2676 | <ReferencePath>../../../bin/</ReferencePath> | ||
2677 | <Reference name="System"/> | ||
2678 | <Reference name="OpenMetaverseTypes" path="../../../bin/"/> | ||
2679 | <Reference name="OpenMetaverse" path="../../../bin/"/> | ||
2680 | <Reference name="OpenSim.Framework"/> | ||
2681 | <Reference name="OpenSim.Framework.Servers"/> | ||
2682 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
2683 | <Reference name="OpenSim.Framework"/> | ||
2684 | <Reference name="OpenSim.Server.Base"/> | ||
2685 | <Reference name="OpenSim.Server.Handlers"/> | ||
2686 | <Reference name="OpenSim.Services.Interfaces"/> | ||
2687 | <Reference name="OpenSim.Services.Connectors"/> | ||
2688 | <Reference name="Robust"/> | ||
2689 | <Reference name="Nini" path="../../../bin/"/> | ||
2690 | <Reference name="log4net" path="../../../bin/"/> | ||
2691 | <Reference name="nunit.framework" path="../../../bin/"/> | ||
2692 | |||
2693 | <Files> | ||
2694 | <Match pattern="*.cs" recurse="true"/> | ||
2695 | </Files> | ||
2696 | </Project> | ||
2697 | |||
2698 | |||
2664 | <Project frameworkVersion="v4_0" name="OpenSim.Tests.Clients.AssetClient" path="OpenSim/Tests/Clients/Assets" type="Exe"> | 2699 | <Project frameworkVersion="v4_0" name="OpenSim.Tests.Clients.AssetClient" path="OpenSim/Tests/Clients/Assets" type="Exe"> |
2665 | <Configuration name="Debug"> | 2700 | <Configuration name="Debug"> |
2666 | <Options> | 2701 | <Options> |