Skip to content

Commit

Permalink
update to env_mach_specific.xsd schema for unit_testing attribute and…
Browse files Browse the repository at this point in the history
… arguments and arg elements
  • Loading branch information
bertinia committed May 3, 2017
1 parent cfaef07 commit c688c5c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions config/xml_schemas/env_mach_specific.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
<xs:attribute name="debug" type="xs:boolean"/>
<xs:attribute name="mpilib" type="xs:string"/>
<xs:attribute name="value" type="xs:string"/>
<xs:attribute name="name" type="xs:string"/>

<!-- simple elements -->
<xs:element name="header" type="xs:string"/>
<xs:element name="executable" type="xs:string"/>
Expand Down Expand Up @@ -75,6 +77,7 @@
<xs:element maxOccurs="unbounded" ref="env"/>
</xs:sequence>
<xs:attribute name="debug" type="xs:boolean"/>
<xs:attribute name="unit_testing" type="xs:boolean"/>
<xs:attribute name="mpilib"/>
</xs:complexType>
</xs:element>
Expand All @@ -83,10 +86,23 @@
<xs:attribute name="name" use="required" type="xs:NCName"/>
</xs:complexType>
</xs:element>
<xs:element name="arguments">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" ref="arg"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="arg">
<xs:complexType mixed="true">
<xs:attribute name="name" use="required" type="xs:string"/>
</xs:complexType>
</xs:element>
<xs:element name="mpirun">
<xs:complexType>
<xs:sequence>
<xs:element ref="executable"/>
<xs:element minOccurs="0" maxOccurs="1" ref="arguments"/>
</xs:sequence>
<xs:attribute ref="compiler"/>
<xs:attribute ref="mpilib"/>
Expand Down

0 comments on commit c688c5c

Please sign in to comment.