You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by br...@apache.org on 2010/05/29 04:02:45 UTC

svn commit: r949334 - /ant/sandbox/antlibs/vss/src/etc/testcases/msvss.xml

Author: bruce
Date: Sat May 29 02:02:44 2010
New Revision: 949334

URL: http://svn.apache.org/viewvc?rev=949334&view=rev
Log:
Added tests for checkout and commit, cleaned up unneeded lines

Modified:
    ant/sandbox/antlibs/vss/src/etc/testcases/msvss.xml

Modified: ant/sandbox/antlibs/vss/src/etc/testcases/msvss.xml
URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/vss/src/etc/testcases/msvss.xml?rev=949334&r1=949333&r2=949334&view=diff
==============================================================================
--- ant/sandbox/antlibs/vss/src/etc/testcases/msvss.xml (original)
+++ ant/sandbox/antlibs/vss/src/etc/testcases/msvss.xml Sat May 29 02:02:44 2010
@@ -105,8 +105,8 @@
   </target>
 
 
-  <target name="test-all" depends="setup, test-add, test-move,
-      test-cloak, test-delete-recover, test-locate, test-status"
+  <target name="test-all" depends="setup, test-delete-recover, test-add,
+      test-move, test-cloak, test-locate, test-status, test-checkout, test-checkin"
       description="Test all VSS tasks other than destroy (use cleanup for that)"
   />
 
@@ -170,9 +170,6 @@
     <!-- should be able to change to project as it has been 'recovered' -->
     <sscp
       vsspath="$/${vss-project}"
-      login="Guest,"
-      ssdir="${vss-ss-dir}"
-      serverPath="${vss-server-dir}"
     />
   </target>
 
@@ -195,6 +192,28 @@
     />
   </target>
 
+  <target name="test-checkout" depends="setup, test-add">
+    <vss:checkout
+      ssdir="${vss-ss-dir}"
+      serverPath="${vss-server-dir}"
+      vsspath="$/${vss-project}"
+      localpath="${testing-dir}"
+      login="Guest,"
+    />
+  </target>
+
+  <target name="test-checkin" depends="setup, test-checkout">
+    <echo file="${vss-temp-file}" message="Testing Checkin with VSS" />
+    <vss:checkin
+      ssdir="${vss-ss-dir}"
+      serverPath="${vss-server-dir}"
+      vsspath="$/${vss-project}"
+      localpath="${testing-dir}"
+      login="Guest,"
+      comment="Testing Checkin with VSS"
+    />
+  </target>
+
   <target name="cleanup" depends="find-ss-server-dir, find-ss-dir">
     <vss:destroy
       vsspath="$/${vss-project}"