diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-15 23:11:23 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-15 23:11:23 +0000 |
commit | ccaf79ebb09c175e8eddda84a0c1c2a9969481c8 (patch) | |
tree | 9ca3108d2ee736945961ad2e4a1a65948d9819d2 /TAO/tests/IDL_Test/main.cpp | |
parent | c9aa5f7c2b49e262f7b1fb000fd096c6fcd59dcb (diff) | |
download | ATCD-ccaf79ebb09c175e8eddda84a0c1c2a9969481c8.tar.gz |
Added wildly informative message to output of 'main'.
Diffstat (limited to 'TAO/tests/IDL_Test/main.cpp')
-rw-r--r-- | TAO/tests/IDL_Test/main.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/TAO/tests/IDL_Test/main.cpp b/TAO/tests/IDL_Test/main.cpp index ed929275d89..0a9177107b6 100644 --- a/TAO/tests/IDL_Test/main.cpp +++ b/TAO/tests/IDL_Test/main.cpp @@ -17,10 +17,14 @@ // // ============================================================================ - +#include "ace/Log_Msg.h" int main (int argc, char *argv[]) { + ACE_DEBUG ((LM_DEBUG, + "IDL_Test build completed without errors\n" + "Check compiler output for warnings\n")); + return 0; } |