summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation/Collocation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Collocation/Collocation.cpp')
-rw-r--r--TAO/tests/Collocation/Collocation.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/TAO/tests/Collocation/Collocation.cpp b/TAO/tests/Collocation/Collocation.cpp
new file mode 100644
index 00000000000..81ebab0c792
--- /dev/null
+++ b/TAO/tests/Collocation/Collocation.cpp
@@ -0,0 +1,26 @@
+// $Id$
+
+#include "Collocation_Tester.h"
+#include "tao/Strategies/advanced_resource.h"
+
+ACE_RCSID(Collocation, main, "$Id$")
+
+int main (int argc, char *argv[])
+{
+ try
+ {
+ Collocation_Test coll_test;
+
+ coll_test.init (argc, argv);
+
+ coll_test.run ();
+
+ coll_test.shutdown ();
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Uncaught exception: ");
+ }
+
+ return 0;
+}