brett       2004/04/14 23:09:50

  Modified:    test     plugin.jelly
               test/xdocs changes.xml
  Log:
  PR: MPNATIVE-1
  use native javah
  
  Revision  Changes    Path
  1.28      +3 -6      maven-plugins/test/plugin.jelly
  
  Index: plugin.jelly
  ===================================================================
  RCS file: /home/cvs/maven-plugins/test/plugin.jelly,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- plugin.jelly      12 Apr 2004 22:50:14 -0000      1.27
  +++ plugin.jelly      15 Apr 2004 06:09:50 -0000      1.28
  @@ -147,8 +147,7 @@
         </junit>
   
         <j:if test="${maven.test.failure}">
  -        <j:set var="ignore__" value="${maven.test.failure.ignore}X"/>
  -        <j:if test="${ignore__ == 'X'}">
  +        <j:if test="${context.getVariable('maven.test.failure.ignore') != 'true'}">
             <fail message="There were test failures."/>
           </j:if>
         </j:if>
  @@ -241,8 +240,7 @@
             </junit>
   
             <j:if test="${maven.test.failure}">
  -            <j:set var="ignore__" value="${maven.test.failure.ignore}X"/>
  -            <j:if test="${ignore__ == 'X'}">
  +            <j:if test="${context.getVariable('maven.test.failure.ignore') != 
'true'}">
                 <fail message="There were test failures."/>
               </j:if>
             </j:if>
  @@ -316,8 +314,7 @@
             </junit>
   
             <j:if test="${maven.test.failure}">
  -            <j:set var="ignore__" value="${maven.test.failure.ignore}X"/>
  -            <j:if test="${ignore__ == 'X'}">
  +            <j:if test="${context.getVariable('maven.test.failure.ignore') != 
'true'}">
                 <fail message="There were test failures."/>
               </j:if>
             </j:if>
  
  
  
  1.12      +1 -0      maven-plugins/test/xdocs/changes.xml
  
  Index: changes.xml
  ===================================================================
  RCS file: /home/cvs/maven-plugins/test/xdocs/changes.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- changes.xml       12 Apr 2004 22:50:15 -0000      1.11
  +++ changes.xml       15 Apr 2004 06:09:50 -0000      1.12
  @@ -25,6 +25,7 @@
     </properties>
     <body>
       <release version="1.6-SNAPSHOT" date="in CVS">
  +      <action dev="brett" type="fix" issue="MPTEST-28">accept 
maven.test.failure.ignore == false</action>
         <action dev="brett" type="fix" issue="MPTEST-25">Honour 
maven.test.failure.ignore for test:single and test:match</action>
       </release>
       <release version="1.5" date="2004-03-07">
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to