summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3766_Regression/client.cpp
diff options
context:
space:
mode:
authorAbdullah Sowayan <sowayan@users.noreply.github.com>2009-11-19 20:20:29 +0000
committerAbdullah Sowayan <sowayan@users.noreply.github.com>2009-11-19 20:20:29 +0000
commit1d4765627a1456e3f0642faf8c607319ed8e354c (patch)
tree26c342f13ecb42b3b55ceb43261f2a8ca8ed8c73 /TAO/tests/Bug_3766_Regression/client.cpp
parentf39c8bdc75c6c979a0613c01a37681c891cd1a2f (diff)
downloadATCD-1d4765627a1456e3f0642faf8c607319ed8e354c.tar.gz
Thu Nov 19 20:18:53 UTC 2009 Abdullah Sowayan <sowayan@gmail.com>
Diffstat (limited to 'TAO/tests/Bug_3766_Regression/client.cpp')
-rw-r--r--TAO/tests/Bug_3766_Regression/client.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/TAO/tests/Bug_3766_Regression/client.cpp b/TAO/tests/Bug_3766_Regression/client.cpp
index 8bc21cc4195..9a06abe1b7e 100644
--- a/TAO/tests/Bug_3766_Regression/client.cpp
+++ b/TAO/tests/Bug_3766_Regression/client.cpp
@@ -20,9 +20,11 @@ ACE_TMAIN(int argc, ACE_TCHAR *argv[])
Test_var test = Test::_narrow (object.in ());
- Info_var info;
+ VariableLengthInfo_var variable_info;
+ test->do_something_VariableLength(variable_info);
- test->do_something(info);
+ FixedLengthInfo_var fixed_info;
+ test->do_something_FixedLength(fixed_info);
orb->destroy ();
}