summaryrefslogtreecommitdiff
path: root/TAO/tests/Collocation/main.cpp
blob: 84ce376b7fc721248ce1c707b600152c0f27fc3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// $Id$

#include "ace/streams.h"
#include "ace/Get_Opt.h"
#include "Coll_Tester.h"

ACE_RCSID(Collocation, main, "$Id$")

int main (int argc, char *argv[])
{
  Collocation_Test coll_test;

  ACE_TRY_NEW_ENV
    {
      coll_test.init (argc, argv, ACE_TRY_ENV);
      ACE_TRY_CHECK;

      coll_test.run (ACE_TRY_ENV);
      ACE_TRY_CHECK;
    }
  ACE_CATCHANY
    {
      ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "Uncaught exception: ");
    }
  ACE_ENDTRY;

  return 0;
}