diff options
author | wisberg <wisberg> | 2003-05-14 05:11:08 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-05-14 05:11:08 +0000 |
commit | 5566313138d1e76383032898098e1a4305810e35 (patch) | |
tree | 068d976d793f29a942a622fbd93e7178c4ff377d /tests/ajcTestSuite.dtd | |
parent | 5702c144cee3b5140dd47ff15e772a04493bb12d (diff) | |
download | aspectj-5566313138d1e76383032898098e1a4305810e35.tar.gz aspectj-5566313138d1e76383032898098e1a4305810e35.zip |
- adding badInput attribute to compiler
- adding message kinds (abort, fail, info)
- message line no longer required
Diffstat (limited to 'tests/ajcTestSuite.dtd')
-rw-r--r-- | tests/ajcTestSuite.dtd | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/ajcTestSuite.dtd b/tests/ajcTestSuite.dtd index b8d54714c..fd512974c 100644 --- a/tests/ajcTestSuite.dtd +++ b/tests/ajcTestSuite.dtd @@ -14,6 +14,7 @@ <!ELEMENT compile (dir-changes*,file*,message*)>
<!ATTLIST compile staging CDATA #IMPLIED >
+ <!ATTLIST compile badInput CDATA #IMPLIED >
<!ATTLIST compile files CDATA #IMPLIED >
<!ATTLIST compile reuseCompiler CDATA #IMPLIED >
<!ATTLIST compile includeClassesDir CDATA #IMPLIED >
@@ -37,8 +38,8 @@ <!ATTLIST file path CDATA #IMPLIED >
<!ELEMENT message (#PCDATA)>
- <!ATTLIST message kind (error | warning | info | Xlint) #REQUIRED >
- <!ATTLIST message line CDATA #REQUIRED >
+ <!ATTLIST message kind (abort | fail | error | warning | info | Xlint) #REQUIRED >
+ <!ATTLIST message line CDATA #IMPLIED >
<!ATTLIST message text CDATA #IMPLIED >
<!ATTLIST message file CDATA #IMPLIED >
|