summaryrefslogtreecommitdiff
path: root/tests/Service_Config_Test.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-08 17:12:53 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-08 17:12:53 +0000
commit0922352a55775ec9ba589d82955d231977da60ae (patch)
treeb2d2cc62c8017259e46d11dc4036e8499890228a /tests/Service_Config_Test.cpp
parent0e0618ea227e7768bac5f5b3f2f1e72c4bfb3c85 (diff)
downloadATCD-0_8_1.tar.gz
This commit was manufactured by cvs2svn to create tag 'v0_8_1'.v0_8_1
Diffstat (limited to 'tests/Service_Config_Test.cpp')
-rw-r--r--tests/Service_Config_Test.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/tests/Service_Config_Test.cpp b/tests/Service_Config_Test.cpp
deleted file mode 100644
index f86f1bbdf03..00000000000
--- a/tests/Service_Config_Test.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// Service_Config_Test.cpp
-//
-// = DESCRIPTION
-// This is a simple test to make sure the Service_Configurator is
-// working correctly.
-//
-// = AUTHOR
-// Doug Schmidt
-//
-// ============================================================================
-
-#include "ace/Service_Config.h"
-#include "test_config.h"
-
-static void
-run_test (int argc, char *argv[])
-{
- // We need this scope to make sure
- ACE_Service_Config daemon;
-
- daemon.open (argc, argv);
-
- ACE_Time_Value tv (argc > 1 ? atoi (argv[1]) : 2);
-
- ACE_ASSERT (daemon.run_reactor_event_loop (tv) == 0);
-}
-
-int
-main (int argc, char *argv[])
-{
- ACE_START_TEST ("Service_Config_Test");
-
- run_test (argc, argv);
-
- ACE_END_TEST;
- return 0;
-}