You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

cc-checkin.xml 1.2 kB

12345678910111213141516171819202122232425262728293031323334
  1. <project name="cc-checkin" basedir="." default="noop"/>
  2. <!-- default value for test.dir, override to specify a cc location -->
  3. <property name="test.dir" location="."/>
  4. <target name="noop"/>
  5. <target name="test-allcheckedout" description="should co all ci files">
  6. <cc-checkin viewpath="${test.dir}" comment="test-allcheckedout">
  7. <include name="**/*.cctest.ci"/>
  8. </cc-checkin>
  9. </target>
  10. <target name="test-allcheckedin" description="should ci nothing">
  11. <cc-checkin viewpath="${test.dir}" comment="test-allcheckedin">
  12. <include name="**/*.cctest.co"/>
  13. </cc-checkin>
  14. </target>
  15. <target name="test-allprivate" description="should ci nothing">
  16. <cc-checkin viewpath="${test.dir}" comment="test-allprivate">
  17. <include name="**/*.cctest.private"/>
  18. </cc-checkin>
  19. </target>
  20. <target name="test-mix" description="should ci only co files">
  21. <cc-checkin viewpath="${test.dir}">
  22. <include name="**/*.cctest.private"/>
  23. <include name="**/*.cctest.ci"/>
  24. <include name="**/*.cctest.co"/>
  25. </cc-checkin>
  26. </target>
  27. </project>