You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2003/02/11 07:43:54 UTC

cvs commit: ant/src/testcases/org/apache/tools/ant/taskdefs AbstractCvsTaskTest.java

bodewig     2003/02/10 22:43:54

  Modified:    src/etc/testcases/taskdefs abstractcvstask.xml
               src/testcases/org/apache/tools/ant/taskdefs
                        AbstractCvsTaskTest.java
  Log:
  CVS module move - Gump is going to nag us once 8-)
  
  Revision  Changes    Path
  1.5       +3 -3      ant/src/etc/testcases/taskdefs/abstractcvstask.xml
  
  Index: abstractcvstask.xml
  ===================================================================
  RCS file: /home/cvs/ant/src/etc/testcases/taskdefs/abstractcvstask.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- abstractcvstask.xml	4 Apr 2002 10:20:19 -0000	1.4
  +++ abstractcvstask.xml	11 Feb 2003 06:43:54 -0000	1.5
  @@ -26,7 +26,7 @@
     <target name="package-attribute">
       <mkdir dir="tmpdir" />
       <cvs cvsroot=":pserver:anoncvs@cvs.apache.org:/home/cvspublic"
  -         package="jakarta-ant/build.xml"
  +         package="ant/build.xml"
            dest="tmpdir"
            quiet="true" />
     </target>
  @@ -34,12 +34,12 @@
     <target name="tag-attribute">
       <mkdir dir="tmpdir" />
       <cvs cvsroot=":pserver:anoncvs@cvs.apache.org:/home/cvspublic"
  -         package="jakarta-ant/build.xml"
  +         package="ant/build.xml"
            dest="tmpdir"
            quiet="true"
            tag="ANT_141" />
       <cvs cvsroot=":pserver:anoncvs@cvs.apache.org:/home/cvspublic"
  -         package="jakarta-ant/build.xml"
  +         package="ant/build.xml"
            dest="tmpdir"
            command="status"/>
     </target>
  
  
  
  1.6       +5 -5      ant/src/testcases/org/apache/tools/ant/taskdefs/AbstractCvsTaskTest.java
  
  Index: AbstractCvsTaskTest.java
  ===================================================================
  RCS file: /home/cvs/ant/src/testcases/org/apache/tools/ant/taskdefs/AbstractCvsTaskTest.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- AbstractCvsTaskTest.java	10 Feb 2003 14:14:45 -0000	1.5
  +++ AbstractCvsTaskTest.java	11 Feb 2003 06:43:54 -0000	1.6
  @@ -1,7 +1,7 @@
   /*
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2002-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -85,14 +85,14 @@
       }
   
       public void testPackageAttribute() {
  -        File f = getProject().resolveFile("tmpdir/jakarta-ant/build.xml");
  +        File f = getProject().resolveFile("tmpdir/ant/build.xml");
           assertTrue("starting empty", !f.exists());
  -        expectLogContaining("package-attribute", "U jakarta-ant/build.xml");
  +        expectLogContaining("package-attribute", "U ant/build.xml");
           assertTrue("now it is there", f.exists());
       }
   
       public void testTagAttribute() {
  -        File f = getProject().resolveFile("tmpdir/jakarta-ant/build.xml");
  +        File f = getProject().resolveFile("tmpdir/ant/build.xml");
           assertTrue("starting empty", !f.exists());
           expectLogContaining("tag-attribute", "ANT_141 (revision: 1.175.2.13)");
           assertTrue("now it is there", f.exists());