summaryrefslogtreecommitdiff
path: root/examples/Naming/test_non_existent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Naming/test_non_existent.cpp')
-rw-r--r--examples/Naming/test_non_existent.cpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/examples/Naming/test_non_existent.cpp b/examples/Naming/test_non_existent.cpp
deleted file mode 100644
index f8785ad0f81..00000000000
--- a/examples/Naming/test_non_existent.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-// $Id$
-
-#include "ace/Naming_Context.h"
-
-ACE_RCSID(Naming, test_non_existent, "$Id$")
-
-int main (int, char *[])
-{
- int i;
-
- ACE_Naming_Context *ns_ptr;
- ACE_NEW_RETURN (ns_ptr,
- ACE_Naming_Context,
- 1);
-
- ACE_Name_Options *name_options = ns_ptr->name_options ();
-
- const char *m_argv[] =
- {
- "MyName",
- "-cNODE_LOCAL" ,
-#if defined (ACE_WIN32)
- "-lC:\\temp\\non_existent",
-#else
- "-l/tmp/foobar.mine",
-#endif /* ACE_WIN32 */
- NULL
- };
-
- int m_argc =
- sizeof (m_argv) / sizeof (char *) -1;
-
- name_options->parse_args (m_argc,
- (char **) m_argv);
-
- i = ns_ptr->open (ACE_Naming_Context::NODE_LOCAL);
- ACE_DEBUG ((LM_DEBUG,
- "(%P) opened with %d\n",
- i));
- if (i != 0)
- return -1;
-
- i = ns_ptr->bind ("Key_Value",
- "Val_Value",
- "-");
-
- ACE_DEBUG ((LM_DEBUG,
- "(%P) bound with %d\n",
- i));
- return 0;
-}