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.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/examples/Naming/test_non_existent.cpp b/examples/Naming/test_non_existent.cpp
deleted file mode 100644
index 4c43b60fc57..00000000000
--- a/examples/Naming/test_non_existent.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "ace/Naming_Context.h"
-
-int main ()
-{
- int i;
-
- ACE_Naming_Context * ns_ptr = new ACE_Naming_Context();
- ACE_Name_Options *name_options = ns_ptr->name_options ();
-
-#if defined (ACE_WIN32)
- char * m_argv[] = {"MyName","-cNODE_LOCAL" ,"-lC:\\tmp\\namespacedir\\MyName",NULL};
-#else
- char * m_argv[] = {"MyName","-cNODE_LOCAL" ,"-l/tmp/foobar.mine",NULL};
-#endif
- int m_argc = sizeof ( m_argv ) / sizeof ( char * ) -1;
-
- name_options->parse_args(m_argc,m_argv);
- i = ns_ptr->open (ACE_Naming_Context::NODE_LOCAL);
- cout << ::getpid() << ": opened with " << i << endl;
- if ( i != 0 ) return -1;
-
- i = ns_ptr->bind("Key_Value","Val_Value","-");
-
- cout << ::getpid() << ": bound with " << i << endl;
-
- return 0;
-
-}