summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_2074_Regression/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Bug_2074_Regression/test.cpp')
-rw-r--r--TAO/orbsvcs/tests/Bug_2074_Regression/test.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/TAO/orbsvcs/tests/Bug_2074_Regression/test.cpp b/TAO/orbsvcs/tests/Bug_2074_Regression/test.cpp
deleted file mode 100644
index 915e7419e76..00000000000
--- a/TAO/orbsvcs/tests/Bug_2074_Regression/test.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-// $Id$
-
-#include "tao/corba.h"
-#include "ORB_Task.h"
-
-int main( int argc, char* argv[] )
-{
- CORBA::ORB_var orb = CORBA::ORB_init( argc, argv );
-
- ORB_Task worker (orb.in ());
- worker.activate (THR_NEW_LWP | THR_JOINABLE,
- 10);
-
- ACE_Time_Value tv (20, 0);
- orb->run(tv);
-
- orb->destroy ();
-
- worker.thr_mgr ()->wait ();
-
- return 0;
-}