You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@gump.apache.org by aj...@apache.org on 2003/11/25 05:58:04 UTC

cvs commit: jakarta-gump/python/gump/model depend.py

ajack       2003/11/24 20:58:04

  Modified:    python/gump/test/resources/full1 module3.xml module2.xml
               python/gump/model depend.py
  Log:
  Patched runtime bug, and added unit tests for it.
  
  Revision  Changes    Path
  1.3       +1 -1      jakarta-gump/python/gump/test/resources/full1/module3.xml
  
  Index: module3.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/python/gump/test/resources/full1/module3.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- module3.xml	24 Nov 2003 01:45:15 -0000	1.2
  +++ module3.xml	25 Nov 2003 04:58:04 -0000	1.3
  @@ -14,7 +14,7 @@
         <property name="ant.home" reference="home" project="project1"/>
       </ant>
   
  -    <depend project="project2"/>
  +    <depend project="project2" runtime="true"/>
       <option project="random"/>
   
       <home nested="dist"/>
  
  
  
  1.3       +1 -1      jakarta-gump/python/gump/test/resources/full1/module2.xml
  
  Index: module2.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/python/gump/test/resources/full1/module2.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- module2.xml	24 Nov 2003 01:45:15 -0000	1.2
  +++ module2.xml	25 Nov 2003 04:58:04 -0000	1.3
  @@ -14,7 +14,7 @@
         <property name="ant.home" reference="home" project="project1"/>
       </ant>
   
  -    <depend project="project1"/>
  +    <depend project="project1" inherit="runtime"/>
       <option project="random"/>
   
       <home nested="dist"/>
  
  
  
  1.5       +1 -1      jakarta-gump/python/gump/model/depend.py
  
  Index: depend.py
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/python/gump/model/depend.py,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- depend.py	24 Nov 2003 01:45:15 -0000	1.4
  +++ depend.py	25 Nov 2003 04:58:04 -0000	1.5
  @@ -155,7 +155,7 @@
           if self.inherit:
               output+=' inherit=\'' + self.getInheritenceDescription() + '\''
           if self.runtime:
  -            output+=' runtime=\'' + self.runtime + '\''
  +            output+=' runtime=\'' + str(self.runtime) + '\''
           if self.ids:
               output+=' ids=\'' + self.ids + '\''
           return output