diff options
author | gokhale <asgokhale@users.noreply.github.com> | 1999-05-15 14:34:34 +0000 |
---|---|---|
committer | gokhale <asgokhale@users.noreply.github.com> | 1999-05-15 14:34:34 +0000 |
commit | 5b741b72bb190b602d2e9acf437cff08cd641eff (patch) | |
tree | 8f772a5c1bdb8809fc318cfa3622d4ad0fd85b80 /TAO/tests | |
parent | b531ef278d781aae3765d5f3132e3b0b1e07cde8 (diff) | |
download | ATCD-5b741b72bb190b602d2e9acf437cff08cd641eff.tar.gz |
recursive/optimized typecodes
Diffstat (limited to 'TAO/tests')
-rw-r--r-- | TAO/tests/Param_Test/big_union.cpp | 6 | ||||
-rw-r--r-- | TAO/tests/Param_Test/param_test.idl | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/TAO/tests/Param_Test/big_union.cpp b/TAO/tests/Param_Test/big_union.cpp index 242046955c5..52bb0afc62b 100644 --- a/TAO/tests/Param_Test/big_union.cpp +++ b/TAO/tests/Param_Test/big_union.cpp @@ -278,7 +278,11 @@ Test_Big_Union::check_validity (void) if (in_array[i] != inout_array[i] || in_array[i] != out_array[i] || in_array[i] != ret_array[i]) - return 0; + { + ACE_DEBUG ((LM_DEBUG, + "mismatch of arrays\n")); + return 0; + } } } break; diff --git a/TAO/tests/Param_Test/param_test.idl b/TAO/tests/Param_Test/param_test.idl index de8c4cae069..af38dda2207 100644 --- a/TAO/tests/Param_Test/param_test.idl +++ b/TAO/tests/Param_Test/param_test.idl @@ -10,7 +10,7 @@ // // = DESCRIPTION // This IDL description is used to test all the parameter passing modes (in, -// inout, out, a0nd return) for a number of IDL data types. The goal is to +// inout, out, and return) for a number of IDL data types. The goal is to // verify the correctness of the generated stubs and skeletons, and the // the marshaling engine of TAO. // |