More tests update
[ACE_TAO.git] / TAO / tests / Bug_3940_Regression / README
blob0f8198c1b8f26faeb0896e09f444af7fb82ee908
3 This is a compile only test. If it compiles, it's passed.
5 tao_idl choked on the annotation syntax of IDL4 (and DDS-XTypes)
6 because that syntax was unknown to its IDL grammar:
8   tao_idl -Wb,pre_include=ace/pre.h -Wb,post_include=ace/post.h -I../.. -Sa -St test.idl
9   syntax error
10   Error - tao_idl: "test.idl", line 3: Illegal syntax following module '{' opener
11   make[1]: *** [testC.h] Error 1
13 The first patch for this bug adds a rule in the lexer to ignore the annotations
14 by consuming them without action.
15 Actual processing of annotations is still to be done.