diff options
author | Jeff Ames | 2008-03-22 23:52:48 +0000 |
---|---|---|
committer | Jeff Ames | 2008-03-22 23:52:48 +0000 |
commit | 9a2b289e328e336f349974302df41b34c92893c3 (patch) | |
tree | c44b4ae8c862446e3f04df8237563f544ed96063 /OpenSim/TestSuite/Main.cs | |
parent | Update svn properties. (diff) | |
download | opensim-SC_OLD-9a2b289e328e336f349974302df41b34c92893c3.zip opensim-SC_OLD-9a2b289e328e336f349974302df41b34c92893c3.tar.gz opensim-SC_OLD-9a2b289e328e336f349974302df41b34c92893c3.tar.bz2 opensim-SC_OLD-9a2b289e328e336f349974302df41b34c92893c3.tar.xz |
Fix compiler warnings in pCampBot, TestSuite, and ScriptEngine/RemoteServer. Thanks daTwitch!
Diffstat (limited to 'OpenSim/TestSuite/Main.cs')
-rw-r--r-- | OpenSim/TestSuite/Main.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/TestSuite/Main.cs b/OpenSim/TestSuite/Main.cs index a31cf01..ff4965c 100644 --- a/OpenSim/TestSuite/Main.cs +++ b/OpenSim/TestSuite/Main.cs | |||
@@ -63,7 +63,7 @@ namespace OpenSim.TestSuite | |||
63 | if (config.Get("help") != null || config.Get("loginuri") == null) { | 63 | if (config.Get("help") != null || config.Get("loginuri") == null) { |
64 | Help(); | 64 | Help(); |
65 | } else { | 65 | } else { |
66 | int botcount = config.GetInt("botcount", 1); | 66 | // TODO: unused: int botcount = config.GetInt("botcount", 1); |
67 | 67 | ||
68 | // BotManager bm = new BotManager(); | 68 | // BotManager bm = new BotManager(); |
69 | 69 | ||
@@ -76,7 +76,7 @@ namespace OpenSim.TestSuite | |||
76 | //Set up our nifty config.. thanks to nini | 76 | //Set up our nifty config.. thanks to nini |
77 | ArgvConfigSource cs = new ArgvConfigSource(args); | 77 | ArgvConfigSource cs = new ArgvConfigSource(args); |
78 | 78 | ||
79 | cs.AddSwitch("Startup", "botcount","n"); | 79 | // TODO: unused: cs.AddSwitch("Startup", "botcount","n"); |
80 | cs.AddSwitch("Startup", "loginuri","l"); | 80 | cs.AddSwitch("Startup", "loginuri","l"); |
81 | cs.AddSwitch("Startup", "firstname"); | 81 | cs.AddSwitch("Startup", "firstname"); |
82 | cs.AddSwitch("Startup", "lastname"); | 82 | cs.AddSwitch("Startup", "lastname"); |
@@ -93,7 +93,7 @@ namespace OpenSim.TestSuite | |||
93 | "usage: pCampBot <-loginuri loginuri> [OPTIONS]\n" + | 93 | "usage: pCampBot <-loginuri loginuri> [OPTIONS]\n" + |
94 | "Spawns a set of bots to test an OpenSim region\n\n" + | 94 | "Spawns a set of bots to test an OpenSim region\n\n" + |
95 | " -l, -loginuri loginuri for sim to log into (required)\n" + | 95 | " -l, -loginuri loginuri for sim to log into (required)\n" + |
96 | " -n, -botcount number of bots to start (default: 1)\n" + | 96 | // TODO: unused: " -n, -botcount number of bots to start (default: 1)\n" + |
97 | " -firstname first name for the bot(s) (default: random string)\n" + | 97 | " -firstname first name for the bot(s) (default: random string)\n" + |
98 | " -lastname lastname for the bot(s) (default: random string)\n" + | 98 | " -lastname lastname for the bot(s) (default: random string)\n" + |
99 | " -password password for the bots(s) (default: random string)\n" + | 99 | " -password password for the bots(s) (default: random string)\n" + |