Whoops, sorry, please ignore this. Turns out I have a local modification that is causing this failure.
From: Chau, Victor [mailto:[email protected]] Sent: Tuesday, December 06, 2011 12:44 PM To: [email protected] Subject: avro-compiler java project does not pass unit test Hi, Is it a known issue that this project fails to pass its unit test? It looks like the output test files needs to be updated. The error all seems to be related to the "doc" tag. The generated output is missing "doc" for protocol and it has it placed in different location in various other places. Here's a sample: Test generated from simple.avdl: "messages" : { "hello" : { "request" : [ { "name" : "greeting", "type" : "string", "doc" : "method 'hello' takes @parameter 'greeting'" } ], "response" : "string" }, In simple.avpr: "messages" : { "hello" : { "doc" : "method 'hello' takes @parameter 'greeting'", "request" : [ { "name" : "greeting", "type" : "string" } ], "response" : "string" },
