diff options
author | zhangw <zhangw@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-01-08 16:52:32 +0000 |
---|---|---|
committer | zhangw <zhangw@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-01-08 16:52:32 +0000 |
commit | aa7585616326f6e7338a64f00a41332201958d67 (patch) | |
tree | c46b2e5ded2155be67672932747ca509610d1494 | |
parent | 7fb2ef0e77f57759c19a94970dbf27c9c24541ac (diff) | |
download | ATCD-aa7585616326f6e7338a64f00a41332201958d67.tar.gz |
Mon Jan 8 16:51:55 UTC 2007 Wallace Zhang <zhang_w@ociweb.com>
-rw-r--r-- | ACE/ChangeLog | 7 | ||||
-rw-r--r-- | ACE/tests/Bug_2368_Regression_Test.cpp | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog index ab273050e8c..e0620ae8388 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,3 +1,10 @@ +Mon Jan 8 16:51:55 UTC 2007 Wallace Zhang <zhang_w@ociweb.com> + + * tests/Bug_2368_Regression_Test.cpp: + + Improved the test output to show the failure caused by the + unresolved bug is expected. + Mon Jan 8 13:48:17 UTC 2007 Chad Elliott <elliott_c@ociweb.com> * examples/APG/Logging/Trace.h: diff --git a/ACE/tests/Bug_2368_Regression_Test.cpp b/ACE/tests/Bug_2368_Regression_Test.cpp index 8441abe346f..94e11107e7d 100644 --- a/ACE/tests/Bug_2368_Regression_Test.cpp +++ b/ACE/tests/Bug_2368_Regression_Test.cpp @@ -111,11 +111,13 @@ run_main (int, ACE_TCHAR *[]) if (!handleA_close_called) ACE_ERROR ((LM_ERROR, - "Handle close hasn't been called for A\n")); + "Handle close hasn't been called for A. " + "This test failure caused by the unresolved bug is EXPECTED!\n")); if (!handleB_close_called) ACE_ERROR ((LM_ERROR, - "Handle close hasn't been called for B\n")); + "Handle close hasn't been called for B. " + "This test failure caused by the unresolved bug is EXPECTED!\n")); ACE_END_TEST; |