diff options
-rw-r--r-- | TAO/tests/IDL_Test/including.idl | 7 | ||||
-rw-r--r-- | TAO/tests/IDL_Test/reopened_modules.idl | 13 |
2 files changed, 1 insertions, 19 deletions
diff --git a/TAO/tests/IDL_Test/including.idl b/TAO/tests/IDL_Test/including.idl index 7e7cb1d74e1..2bd9c9d7af5 100644 --- a/TAO/tests/IDL_Test/including.idl +++ b/TAO/tests/IDL_Test/including.idl @@ -43,12 +43,5 @@ union Bog switch (Agog) case Agog3: long bog3; }; -// #included by reopened modules.idl along with -// same module in included.idl. -module Aok -{ - struct pug {short leash;}; -}; - #endif /* IDL_TEST_INCLUDING_IDL */ diff --git a/TAO/tests/IDL_Test/reopened_modules.idl b/TAO/tests/IDL_Test/reopened_modules.idl index 87a6f61ac74..b0a27db9c42 100644 --- a/TAO/tests/IDL_Test/reopened_modules.idl +++ b/TAO/tests/IDL_Test/reopened_modules.idl @@ -19,12 +19,8 @@ // // ============================================================================ -#include "including.idl" -#include "included.idl" - // These examples test the lookup abilities of the -// TAO IDL compiler, with reopened and/or #included -// modules. +// TAO IDL compiler, with reopened modules. module A { @@ -122,10 +118,3 @@ module com }; }; -// Uses members of a reopened module #included from -// included.idl and including.idl -interface gather -{ - void op (in Aok::Seq1Type inarg, - inout Aok::pug inoutarg); -}; |