samples/composition/build.xml
changeset 181 81d72f69fa42
parent 180 131332825eab
child 184 6b2cd8df14c0
     1.1 --- a/samples/composition/build.xml	Sat Jun 14 09:59:25 2008 +0200
     1.2 +++ b/samples/composition/build.xml	Sat Jun 14 09:59:27 2008 +0200
     1.3 @@ -12,6 +12,18 @@
     1.4          <antcall target="-build-one">
     1.5              <param name="version" value="api2.0"/>
     1.6          </antcall>
     1.7 +        <antcall target="-build-one">
     1.8 +            <param name="version" value="api2.0-compat"/>
     1.9 +        </antcall>
    1.10 +        <antcall target="-build-one">
    1.11 +            <param name="version" value="api2.0-property"/>
    1.12 +        </antcall>
    1.13 +        <antcall target="-build-one">
    1.14 +            <param name="version" value="api2.0-enum"/>
    1.15 +        </antcall>
    1.16 +        <antcall target="-build-one">
    1.17 +            <param name="version" value="api2.0-runtime"/>
    1.18 +        </antcall>
    1.19          
    1.20          <antcall target="-build-one">
    1.21              <param name="version" value="test"/>
    1.22 @@ -28,6 +40,22 @@
    1.23          <antcall target="-run-one">
    1.24              <param name="version" value="api2.0"/>
    1.25          </antcall>
    1.26 +        <echo level="info" message="Running the Implementation against Version 2.0 with compatible extension of the API. This should succeed."/>
    1.27 +        <antcall target="-run-one">
    1.28 +            <param name="version" value="api2.0-compat"/>
    1.29 +        </antcall>
    1.30 +        <echo level="info" message="Running the Implementation against Version 2.0 with property guarded extension of the API. This should succeed."/>
    1.31 +        <antcall target="-run-one">
    1.32 +            <param name="version" value="api2.0-property"/>
    1.33 +        </antcall>
    1.34 +        <echo level="info" message="Running the Implementation against Version 2.0 with enum guarded extension of the API. This should succeed."/>
    1.35 +        <antcall target="-run-one">
    1.36 +            <param name="version" value="api2.0-enum"/>
    1.37 +        </antcall>
    1.38 +        <echo level="info" message="Running the Implementation against Version 2.0 with runtime check in the API. This should succeed."/>
    1.39 +        <antcall target="-run-one">
    1.40 +            <param name="version" value="api2.0-runtime"/>
    1.41 +        </antcall>
    1.42      </target>
    1.43      
    1.44      <!-- support methods -->