aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/TestSuite/Main.cs
diff options
context:
space:
mode:
authorJeff Ames2008-05-19 13:26:42 +0000
committerJeff Ames2008-05-19 13:26:42 +0000
commit259ddcfe1a655638f8e87f8b3dfec6d9c006140f (patch)
treee6f0f1c461c2dffbb1c9fdc466002c31b5ad5ad2 /OpenSim/TestSuite/Main.cs
parentfixing exception when RestPlugin not configured. refactors RestRegionPlugin, ... (diff)
downloadopensim-SC_OLD-259ddcfe1a655638f8e87f8b3dfec6d9c006140f.zip
opensim-SC_OLD-259ddcfe1a655638f8e87f8b3dfec6d9c006140f.tar.gz
opensim-SC_OLD-259ddcfe1a655638f8e87f8b3dfec6d9c006140f.tar.bz2
opensim-SC_OLD-259ddcfe1a655638f8e87f8b3dfec6d9c006140f.tar.xz
Update svn properties. Minor formatting cleanup.
Diffstat (limited to 'OpenSim/TestSuite/Main.cs')
-rw-r--r--OpenSim/TestSuite/Main.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenSim/TestSuite/Main.cs b/OpenSim/TestSuite/Main.cs
index 1a9aa0e..b944304 100644
--- a/OpenSim/TestSuite/Main.cs
+++ b/OpenSim/TestSuite/Main.cs
@@ -33,7 +33,7 @@ namespace OpenSim.TestSuite
33 /// <summary> 33 /// <summary>
34 /// Event Types from the BOT. Add new events here 34 /// Event Types from the BOT. Add new events here
35 /// </summary> 35 /// </summary>
36 public enum EventType:int 36 public enum EventType : int
37 { 37 {
38 NONE = 0, 38 NONE = 0,
39 CONNECTED = 1, 39 CONNECTED = 1,
@@ -84,15 +84,15 @@ namespace OpenSim.TestSuite
84 private static void Help() 84 private static void Help()
85 { 85 {
86 Console.WriteLine( 86 Console.WriteLine(
87 "usage: pCampBot <-loginuri loginuri> [OPTIONS]\n" + 87 "usage: pCampBot <-loginuri loginuri> [OPTIONS]\n" +
88 "Spawns a set of bots to test an OpenSim region\n\n" + 88 "Spawns a set of bots to test an OpenSim region\n\n" +
89 " -l, -loginuri loginuri for sim to log into (required)\n" + 89 " -l, -loginuri loginuri for sim to log into (required)\n" +
90 // TODO: unused: " -n, -botcount number of bots to start (default: 1)\n" + 90 // TODO: unused: " -n, -botcount number of bots to start (default: 1)\n" +
91 " -firstname first name for the bot(s) (default: random string)\n" + 91 " -firstname first name for the bot(s) (default: random string)\n" +
92 " -lastname lastname for the bot(s) (default: random string)\n" + 92 " -lastname lastname for the bot(s) (default: random string)\n" +
93 " -password password for the bots(s) (default: random string)\n" + 93 " -password password for the bots(s) (default: random string)\n" +
94 " -h, -help show this message" 94 " -h, -help show this message"
95 ); 95 );
96 } 96 }
97 } 97 }
98} 98}