summaryrefslogtreecommitdiff
path: root/DAnCE/tests/DeploymentPlanDump/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/tests/DeploymentPlanDump/test.cpp')
-rw-r--r--DAnCE/tests/DeploymentPlanDump/test.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/DAnCE/tests/DeploymentPlanDump/test.cpp b/DAnCE/tests/DeploymentPlanDump/test.cpp
deleted file mode 100644
index d42f4c9fa42..00000000000
--- a/DAnCE/tests/DeploymentPlanDump/test.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-#include "tools/Config_Handlers/DnC_Dump.h"
-#include "tools/Config_Handlers/XML_File_Intf.h"
-#include "dance/Logger/Log_Macros.h"
-
-int ACE_TMAIN (int argc, ACE_TCHAR * argv[])
-{
- try
- {
- if (argc < 1)
- {
- ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("Incorrect count of arguments. ")
- ACE_TEXT ("Path to deployment plan has not been specified.\n")));
- return 1;
- }
- DAnCE::Config_Handlers::XML_File_Intf file (argv[1]);
- file.add_search_path (ACE_TEXT ("DANCE_ROOT"), ACE_TEXT ("/docs/schema/"));
- file.add_search_path (ACE_TEXT ("CIAO_ROOT"), ACE_TEXT ("/docs/schema/"));
- file.add_search_path (ACE_TEXT ("TAO_ROOT"), ACE_TEXT ("/docs/schema/"));
- Deployment::DeploymentPlan * plan = file.release_plan();
- Deployment::DnC_Dump::dump (*plan);
- delete plan;
- }
- catch (const CORBA::Exception& ex)
- {
- ex._tao_print_exception ("DAnCE_DeploymentPlanDump::main\n");
- return -1;
- }
- catch (...)
- {
- ACE_ERROR ((LM_ERROR, ACE_TEXT ("Unexpected exception\n")));
- return 1;
- }
-
- return 0;
-}