summaryrefslogtreecommitdiff
path: root/tests/Get_Opt_Test.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-25 19:33:35 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-12-25 19:33:35 +0000
commitcdbf10c07ee40576c2c0072b4e5ad065855fba11 (patch)
treef767688cb99a8668cf78df3a266696a57e217484 /tests/Get_Opt_Test.cpp
parent19f3b34f03b6a0b47a90f3cc3826fc9f100d5196 (diff)
downloadATCD-cdbf10c07ee40576c2c0072b4e5ad065855fba11.tar.gz
ChangeLogTag:Tue Dec 25 09:30:14 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Diffstat (limited to 'tests/Get_Opt_Test.cpp')
-rw-r--r--tests/Get_Opt_Test.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/Get_Opt_Test.cpp b/tests/Get_Opt_Test.cpp
index d0c16b5cd82..e7e1b8b3421 100644
--- a/tests/Get_Opt_Test.cpp
+++ b/tests/Get_Opt_Test.cpp
@@ -32,7 +32,7 @@ ACE_RCSID(tests, Get_Opt_Test, "$Id$")
static int
parse_args (int test_number,
int ordering,
- ACE_TCHAR *test_args,
+ const ACE_TCHAR *test_args,
int skip_argv0 = 1,
int report_errors = 1)
{
@@ -44,7 +44,7 @@ parse_args (int test_number,
{
test = "Test_";
ACE_TCHAR s[20];
- test += ACE_OS::itoa(test_number, s, 10);
+ test += ACE_OS::itoa (test_number, s, 10);
test += " ";
}
@@ -295,7 +295,8 @@ run_test (int& test_number, int ordering)
int
main (int, ACE_TCHAR *argv[])
{
- ACE_START_TEST (ACE_TEXT ("Get_Opt_Test.cpp"));
+ ACE_START_TEST (ACE_TEXT ("Get_Opt_Test"));
+ ACE_UNUSED_ARG (argv);
int retval = 0;
int test_number = 0;