Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.0
-
None
Description
Tests used to show a data dump for things like left over data but this seems to be missing now.
For example:
echo -ne "string|123456" | daffodil_cli parse -s ./daffodil-cli/src/test/resources/edu/illinois/ncsa/daffodil/CLI/cli_schema.dfdl.xsd -r leftover
Output used to be similar to:
[error] Left over data. 11 bytes available. Location: byte 10 UTF-8 text starting at byte 8 is: (234) Data (hex) starting at byte 8 is: (0x323334) <ex:leftover xmlns:ex="http://example.com"> <ex:e3>string</ex:e3> <ex:e4>123</ex:e4> </ex:leftover>
Now looks like:
[error] Left over data. 13 bytes available. Location: byte 10 limit 13 <ex:leftover xmlns:ex="http://example.com"> <e3>string</e3> <e4>123</e4> </ex:leftover>