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
/
tests
/
Bug_3042_Regression
/
client.cpp
blob
dd7872e3077e64728f0e41101729a63acc33728c
1
// -*- C++ -*-
2
#include
"testC.h"
3
#include
"ace/Log_Msg.h"
4
5
int
6
ACE_TMAIN
(
int
,
ACE_TCHAR
*[])
7
{
8
try
9
{
10
// creation
11
Foo
::
Node node
;
12
node
.
nodes
.
length
(
2
);
13
}
14
catch
(
const
CORBA
::
Exception
&
ex
)
15
{
16
ex
.
_tao_print_exception
(
"Bug_3042_Test test:"
);
17
return
-
1
;
18
}
19
catch
(...)
20
{
21
return
-
1
;
22
}
23
return
0
;
24
}