|
12345678910111213141516171819202122232425262728293031323334 |
- <project name="cc-checkin" 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 all ci files">
- <cc-checkin viewpath="${test.dir}" comment="test-allcheckedout">
- <include name="**/*.cctest.ci"/>
- </cc-checkin>
- </target>
-
- <target name="test-allcheckedin" description="should ci nothing">
- <cc-checkin viewpath="${test.dir}" comment="test-allcheckedin">
- <include name="**/*.cctest.co"/>
- </cc-checkin>
- </target>
-
- <target name="test-allprivate" description="should ci nothing">
- <cc-checkin viewpath="${test.dir}" comment="test-allprivate">
- <include name="**/*.cctest.private"/>
- </cc-checkin>
- </target>
-
- <target name="test-mix" description="should ci only co files">
- <cc-checkin viewpath="${test.dir}">
- <include name="**/*.cctest.private"/>
- <include name="**/*.cctest.ci"/>
- <include name="**/*.cctest.co"/>
- </cc-checkin>
- </target>
-
- </project>
|