diff options
author | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-01 16:45:37 +0000 |
---|---|---|
committer | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-01 16:45:37 +0000 |
commit | 72cb7c072c7e3bf7e0a4e14e07e93c3b435efd45 (patch) | |
tree | a9a29210b38406c9d7357b3db0f58ce32a6a69ec | |
parent | 215f420acb66b5272500038b1ad7b1ed14765118 (diff) | |
download | ATCD-72cb7c072c7e3bf7e0a4e14e07e93c3b435efd45.tar.gz |
removed explicit path for netsvcs dll in tests Win32 service configuration files
-rw-r--r-- | ChangeLog-98b | 9 | ||||
-rw-r--r-- | tests/Win32clerk.conf | 4 | ||||
-rw-r--r-- | tests/Win32server.conf | 4 | ||||
-rw-r--r-- | tests/Win32tokens.conf | 4 |
4 files changed, 15 insertions, 6 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b index b1b840c1f87..1fe8dbbfc7b 100644 --- a/ChangeLog-98b +++ b/ChangeLog-98b @@ -1,3 +1,12 @@ +Tue Dec 01 10:49:00 1998 Chris Gill <cdgill@cs.wustl.edu> + + * tests/Win32clerk.conf + tests/Win32server.conf + tests/Win32tokens.conf: removed explicit path for netsvcs dll, as + this dll is now being moved to ACE_wrappers/bin after it is built + and the explicit path was causing dlopen to fail rather than + searching the path on NT, which caused Time_Service_Test to fail. + Tue Dec 01 10:07:48 1998 David L. Levine <levine@cs.wustl.edu> * ACE version 4.6.5 released. diff --git a/tests/Win32clerk.conf b/tests/Win32clerk.conf index d1b5b76a1e2..02a15a5aef0 100644 --- a/tests/Win32clerk.conf +++ b/tests/Win32clerk.conf @@ -1,3 +1,3 @@ # Note: hostname and port number need to be concatenated separated by ":" -dynamic Logging_Strategy Service_Object * ../netsvcs/lib/netsvcs:_make_ACE_Logging_Strategy() "-s c:\temp\log\Time_Client.log -f OSTREAM" -dynamic Time_Server_Test Service_Object * ../netsvcs/lib/netsvcs:_make_ACE_TS_Clerk_Processor () "-h localhost:10222 -t 4" +dynamic Logging_Strategy Service_Object * netsvcs:_make_ACE_Logging_Strategy() "-s c:\temp\log\Time_Client.log -f OSTREAM" +dynamic Time_Server_Test Service_Object * netsvcs:_make_ACE_TS_Clerk_Processor () "-h localhost:10222 -t 4" diff --git a/tests/Win32server.conf b/tests/Win32server.conf index 9310fdfb4a5..edb79f0f2d4 100644 --- a/tests/Win32server.conf +++ b/tests/Win32server.conf @@ -5,6 +5,6 @@ # In addition, you can replace the hardcoded "-p 20xxx" with "-p # $PORTxxx" if you set your environment variables correctly. -dynamic Logging_Strategy Service_Object * ../netsvcs/lib/netsvcs:_make_ACE_Logging_Strategy() "-s c:\temp\log\Time_Server.log -f OSTREAM" -dynamic Time_Service Service_Object * ../netsvcs/lib/netsvcs:_make_ACE_TS_Server_Acceptor() "-p 10222" +dynamic Logging_Strategy Service_Object * netsvcs:_make_ACE_Logging_Strategy() "-s c:\temp\log\Time_Server.log -f OSTREAM" +dynamic Time_Service Service_Object * netsvcs:_make_ACE_TS_Server_Acceptor() "-p 10222" diff --git a/tests/Win32tokens.conf b/tests/Win32tokens.conf index 5fe309648fd..1b8245e3b66 100644 --- a/tests/Win32tokens.conf +++ b/tests/Win32tokens.conf @@ -1,4 +1,4 @@ # NT version # -dynamic Logging_Strategy Service_Object * ../netsvcs/lib/netsvcs:_make_ACE_Logging_Strategy() "-s c:\temp\log\Tokens_Test_Server.log -f OSTREAM" -dynamic Token_Service Service_Object * ../netsvcs/lib/netsvcs:_make_ACE_Token_Acceptor() "-p 23456" +dynamic Logging_Strategy Service_Object * netsvcs:_make_ACE_Logging_Strategy() "-s c:\temp\log\Tokens_Test_Server.log -f OSTREAM" +dynamic Token_Service Service_Object * netsvcs:_make_ACE_Token_Acceptor() "-p 23456" |