blob: 650aefe03b3fc501ffcfa29f85774d99977c75f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!DOCTYPE message-list [
<!ELEMENT message-list (message+) >
<!ELEMENT message (source-location)*>
<!ATTLIST message kind CDATA #REQUIRED >
<!ATTLIST message message CDATA #IMPLIED >
<!ELEMENT source-location (#PCDATA) >
<!ATTLIST source-location line CDATA #REQUIRED >
<!ATTLIST source-location endLine CDATA #IMPLIED >
<!ATTLIST source-location column CDATA #IMPLIED >
<!ATTLIST source-location sourceFile CDATA #IMPLIED >
]>
<message-list>
<message kind="fail"
message="diff between testdata\dirChangesTestDir\diff\expected\one-one.txt in expected dir testdata\dirChangesTestDir\diff\expected and actual dir testdata\dirChangesTestDir\diff\actual
4c4
< Fourth line
---
> Fourth line changed
">
<source-location line="0" column="0" endLine="0"
sourceFile="ISourceLocation.NO_FILE"/>
</message>
<message kind="fail"
message="diff between testdata\dirChangesTestDir\diff\expected\subone\one-subone-one.txt in expected dir testdata\dirChangesTestDir\diff\expected and actual dir testdata\dirChangesTestDir\diff\actual
2c2
< Second line
---
> Second line changed in one-subone-one.txt
">
<source-location line="0" column="0" endLine="0"
sourceFile="ISourceLocation.NO_FILE"/>
</message>
</message-list>
|