summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-12-01 08:17:01 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-12-01 08:17:01 +0000
commit2d7bec50af2fddf4bafed2a2a272a6047a5b070d (patch)
tree21bae837fdcf30c5e36f92be3263f914767122b0
parent6df980a01fd4facf010fb0899188511cee2b5852 (diff)
downloadATCD-2d7bec50af2fddf4bafed2a2a272a6047a5b070d.tar.gz
ChangeLogTag:Wed Dec 1 02:10:51 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
-rw-r--r--ChangeLog-99b6
-rw-r--r--THANKS1
-rw-r--r--tests/Auto_IncDec_Test.cpp3
3 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index da41fa452bb..cbd7a76ac65 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,9 @@
+Wed Dec 1 02:10:51 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * tests/Auto_IncDec_Test.cpp: The main() function was missing
+ a return type. Also, don't run the test with output logged to
+ stderr. Thanks to David Levine for reporting this.
+
Tue Nov 30 16:11:52 1999 Steve Huston <shuston@riverace.com>
* tests/run_tests.sh: Made the check for libDLL_Test use a
diff --git a/THANKS b/THANKS
index a75af3073db..2a5a3dae585 100644
--- a/THANKS
+++ b/THANKS
@@ -846,7 +846,6 @@ Jan Nielsen <jnielsen@campuspipeline.com>
Jochen Linkohr <Jochen.Linkohr@stz-rechnereinsatz.de>
Mirko Brandner <mbrandner@yahoo.com>
Yuval Yosef <yuvi@isdn.net.il>
-Villatora, Alexander <alex@cfx.com>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson. Paul devised the recursive Makefile scheme that
diff --git a/tests/Auto_IncDec_Test.cpp b/tests/Auto_IncDec_Test.cpp
index 71d91f7fb82..b101c0ce24c 100644
--- a/tests/Auto_IncDec_Test.cpp
+++ b/tests/Auto_IncDec_Test.cpp
@@ -88,12 +88,11 @@ template class ACE_Auto_IncDec<int>;
// Spawn off threads.
+int
main (int, ASYS_TCHAR *[])
{
ACE_START_TEST (ASYS_TEXT ("Auto_IncDec_Test"));
- ACE_LOG_MSG->set_flags (ACE_Log_Msg::STDERR);
-
#if defined (ACE_HAS_THREADS)
ACE_DEBUG ((LM_DEBUG,
ASYS_TEXT (" (%t) main thread starting\n")));