summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-05-23 13:20:21 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-05-23 13:20:21 +0000
commitea5abcfb2bd8115f96a7156616d499cdbf48e126 (patch)
tree9686b64fc673c607f4f970bf8f04ff95f93a155f /ACE
parent1d910c905d97b2a91ff470e22a846ad97e295abb (diff)
downloadATCD-ea5abcfb2bd8115f96a7156616d499cdbf48e126.tar.gz
Wed May 23 13:19:55 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ChangeLog6
-rw-r--r--ACE/tests/Process_Manager_Test.cpp30
2 files changed, 21 insertions, 15 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 4ad127e5219..c794db695f2 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,9 @@
+Wed May 23 13:19:55 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tests/Process_Manager_Test.cpp:
+ Added %P to all debug statements so that we can see the process id
+ in each line
+
Wed May 23 13:00:55 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/config-vxworks6.2:
diff --git a/ACE/tests/Process_Manager_Test.cpp b/ACE/tests/Process_Manager_Test.cpp
index bbc542ce5a4..22acac945de 100644
--- a/ACE/tests/Process_Manager_Test.cpp
+++ b/ACE/tests/Process_Manager_Test.cpp
@@ -190,11 +190,11 @@ run_main (int argc, ACE_TCHAR *argv[])
if (result != child1)
{
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("Error: expected to reap child1 (%d); got %d\n"),
+ ACE_TEXT ("(%P) Error: expected to reap child1 (%d); got %d\n"),
child1,
result));
if (result == ACE_INVALID_PID)
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("error")));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%P) %p\n"), ACE_TEXT ("error")));
test_status = 1;
}
else
@@ -217,11 +217,11 @@ run_main (int argc, ACE_TCHAR *argv[])
if (result != child3)
{
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("Error: expected to reap child3 (%d); got %d\n"),
+ ACE_TEXT ("(%P) Error: expected to reap child3 (%d); got %d\n"),
child3,
result));
if (result == ACE_INVALID_PID)
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("error")));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%P) %p\n"), ACE_TEXT ("error")));
test_status = 1;
}
else
@@ -237,11 +237,11 @@ run_main (int argc, ACE_TCHAR *argv[])
if (result != child2)
{
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("Error: expected to reap child2 (%d); got %d\n"),
+ ACE_TEXT ("(%P) Error: expected to reap child2 (%d); got %d\n"),
child2,
result));
if (result == ACE_INVALID_PID)
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("error")));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%P) %p\n"), ACE_TEXT ("error")));
test_status = 1;
}
else
@@ -262,11 +262,11 @@ run_main (int argc, ACE_TCHAR *argv[])
if (result != child4)
{
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("Error: expected to reap child4 (%d); got %d\n"),
+ ACE_TEXT ("(%P) Error: expected to reap child4 (%d); got %d\n"),
child4,
result));
if (result == ACE_INVALID_PID)
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("error")));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%P) %p\n"), ACE_TEXT ("error")));
test_status = 1;
}
else
@@ -283,10 +283,10 @@ run_main (int argc, ACE_TCHAR *argv[])
if (result != 0)
{
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("Error: expected wait to time out; got %d\n"),
+ ACE_TEXT ("(%P) Error: expected wait to time out; got %d\n"),
result));
if (result == ACE_INVALID_PID)
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("error")));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%P) %p\n"), ACE_TEXT ("error")));
test_status = 1;
}
else
@@ -303,7 +303,7 @@ run_main (int argc, ACE_TCHAR *argv[])
child5,
result));
if (result == ACE_INVALID_PID)
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("error")));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%P) %p\n"), ACE_TEXT ("error")));
test_status = 1;
}
else
@@ -317,7 +317,7 @@ run_main (int argc, ACE_TCHAR *argv[])
ACE_exitcode status6;
if (-1 == mgr.terminate (child6))
{
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("terminate child6")));
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("(%P) %p\n"), ACE_TEXT ("terminate child6")));
test_status = 1;
mgr.wait (child6, &status6); // Wait for child to exit just to clean up
}
@@ -326,7 +326,7 @@ run_main (int argc, ACE_TCHAR *argv[])
if (-1 == mgr.wait (child6, &status6))
{
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("wait on child6 reported ACE_INVALID_PID\n")));
+ ACE_TEXT ("(%P) wait on child6 reported ACE_INVALID_PID\n")));
test_status = 1;
}
else
@@ -339,13 +339,13 @@ run_main (int argc, ACE_TCHAR *argv[])
WTERMSIG (status6)));
else
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("child6 should have died on signal, ")
+ ACE_TEXT ("(%P) child6 should have died on signal, ")
ACE_TEXT ("but didn't; exit status %d\n"),
WEXITSTATUS (status6)));
#else
ACE_DEBUG
((LM_DEBUG,
- ACE_TEXT ("The process terminated with exit code %d\n"),
+ ACE_TEXT ("(%P) The process terminated with exit code %d\n"),
status6));
#endif /*ACE_WIN32*/
}