summaryrefslogtreecommitdiff
path: root/TAO/tests
diff options
context:
space:
mode:
authormsmit <msmit@remedy.nl>2010-07-24 07:31:24 +0000
committermsmit <msmit@remedy.nl>2010-07-24 07:31:24 +0000
commit8f7805b751af31b6364c3592cb98d8716077e76f (patch)
tree09013a327ef0b53e52a7831f1fab43c8f721a353 /TAO/tests
parenta31d2761bb9454acd3938b78283b088d5eb8e60a (diff)
downloadATCD-8f7805b751af31b6364c3592cb98d8716077e76f.tar.gz
Sat Jul 24 07:28:04 UTC 2010 Marcel Smit <msmit@remedy.nl>
* tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B.idl: * tests/DSI_AMI_Gateway/test.idl: * tests/DSI_Gateway/test.idl: Removed anonymous constructs from test IDL and modified test code accordingly.
Diffstat (limited to 'TAO/tests')
-rw-r--r--TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B.idl3
-rw-r--r--TAO/tests/DSI_AMI_Gateway/test.idl2
-rw-r--r--TAO/tests/DSI_Gateway/test.idl2
3 files changed, 4 insertions, 3 deletions
diff --git a/TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B.idl b/TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B.idl
index 2b6b7382fab..01e5ddb5179 100644
--- a/TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B.idl
+++ b/TAO/tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B.idl
@@ -10,6 +10,7 @@ typedef sequence<char, 32> Bounded_Var_Size;
typedef sequence<char> Unbounded_Var_Size;
typedef long Fixed_Array[20];
typedef string Var_Array [3];
+typedef string<20> string_20;
struct TimeOfDay {
short hour; // 0 - 23
@@ -45,7 +46,7 @@ interface Foo_B
oneway void test_unbounded_string_arg(in string message);
- oneway void test_bounded_string_arg(in string<20> message);
+ oneway void test_bounded_string_arg(in string_20 message);
oneway void test_fixed_array_arg(in Fixed_Array message);
diff --git a/TAO/tests/DSI_AMI_Gateway/test.idl b/TAO/tests/DSI_AMI_Gateway/test.idl
index 29cdc6f4d15..5c7f0d32d2c 100644
--- a/TAO/tests/DSI_AMI_Gateway/test.idl
+++ b/TAO/tests/DSI_AMI_Gateway/test.idl
@@ -7,7 +7,7 @@ typedef sequence<long> DSI_LongSeq;
struct Structure
{
short i;
- sequence<long> seq;
+ DSI_LongSeq seq;
};
exception test_exception
diff --git a/TAO/tests/DSI_Gateway/test.idl b/TAO/tests/DSI_Gateway/test.idl
index 29cdc6f4d15..5c7f0d32d2c 100644
--- a/TAO/tests/DSI_Gateway/test.idl
+++ b/TAO/tests/DSI_Gateway/test.idl
@@ -7,7 +7,7 @@ typedef sequence<long> DSI_LongSeq;
struct Structure
{
short i;
- sequence<long> seq;
+ DSI_LongSeq seq;
};
exception test_exception