summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/InterfaceRepo/Persistence_Test/test.cpp
blob: 2155c1c4c3686bc60c21d72a1f4f3fc3c1a256fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// -*- C++ -*-
// $Id$

#include "Ptest.h"

ACE_RCSID (Persistence_Test,
           test,
           "$Id$")

int main (int argc, char *argv[])
{
  Ptest ptest;

  int retval = ptest.init (argc, 
                           argv);

  if (retval == -1)
    return 1;

  retval = ptest.run ();

  return retval;
}