repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
InterfaceRepo
/
Persistence_Test
/
test.cpp
blob
a3ee919438d38146246f39ccd63f7ecc5c8153fe
1
// -*- C++ -*-
2
#include
"Ptest.h"
3
4
int
ACE_TMAIN
(
int
argc
,
ACE_TCHAR
*
argv
[])
5
{
6
Ptest ptest
;
7
8
if
(
ptest
.
init
(
argc
,
argv
) == -
1
)
9
return
1
;
10
11
if
(
ptest
.
run
() == -
1
)
12
return
1
;
13
14
if
(
ptest
.
shutdown
() == -
1
)
15
return
1
;
16
17
return
0
;
18
}