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.
|
- <project name="cc-checkout" basedir="." default="noop"/>
-
- <!-- default value for test.dir, override to specify a cc location -->
- <property name="test.dir" location="."/>
-
- <target name="noop"/>
-
- <target name="test-allcheckedout" description="should co nothing">
- <cc-checkout viewpath="${test.dir}" comment="test-allcheckedout">
- <include name="**/*.cctest.ci"/>
- </cc-checkout>
- </target>
-
- <target name="test-allcheckedin" description="should co all files">
- <cc-checkout viewpath="${test.dir}" comment="test-allcheckedin">
- <include name="**/*.cctest.co"/>
- </cc-checkout>
- </target>
-
- <target name="test-allprivate" description="should co nothing">
- <cc-checkout viewpath="${test.dir}" comment="test-allprivate">
- <include name="**/*.cctest.private"/>
- </cc-checkout>
- </target>
-
- <target name="test-mix" description="should co only ci files">
- <cc-checkout viewpath="${test.dir}">
- <include name="**/*.cctest.private"/>
- <include name="**/*.cctest.ci"/>
- <include name="**/*.cctest.co"/>
- </cc-checkout>
- </target>
-
- </project>
|