diff options
author | bloodstalker <thabogre@gmail.com> | 2017-01-28 00:01:57 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-01-28 00:01:57 +0000 |
commit | ee42acccd3d4a9113f5211eaf8dbc64adc0b53de (patch) | |
tree | e669435ecc5e30d8feaffb0f9360d465cb231021 | |
parent | we have to use gcov 4.2 since thats what llvm generates (diff) | |
download | mutator-ee42acccd3d4a9113f5211eaf8dbc64adc0b53de.tar.gz mutator-ee42acccd3d4a9113f5211eaf8dbc64adc0b53de.zip |
the xml report schema
-rw-r--r-- | samples/mutator0-report-schema.xsd | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/samples/mutator0-report-schema.xsd b/samples/mutator0-report-schema.xsd new file mode 100644 index 0000000..da15bb4 --- /dev/null +++ b/samples/mutator0-report-schema.xsd @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!--this schema is used to validate the report generated and is only meant as a dev test--> + +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2001/XMLSchema"> + +<xs:element name="Report"> + <xs:complexType> + <xs:sequence> + <xs:element name="MisraDiag"> + <xs:complexType> + <xs:attribute name="Misra-C-2004Rule" use="required"></xs:attribute> + <xs:attribute name="FileName" use="required"></xs:attribute> + <xs:attribute name="SpellingLineNumber" use="required"></xs:attribute> + <xs:attribute name="SpellingColumnNumber" use="required"></xs:attribute> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + +</xs:element> + +</xs:schema>
\ No newline at end of file |