add a way to skip tests
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/b45b161c Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/b45b161c Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/b45b161c Branch: refs/heads/develop Commit: b45b161c25af3bcdd7efbda95669fceb138285ce Parents: a50a38e Author: Alex Harui <[email protected]> Authored: Thu Oct 1 08:08:31 2015 -0700 Committer: Alex Harui <[email protected]> Committed: Thu Oct 1 08:08:31 2015 -0700 ---------------------------------------------------------------------- build.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/b45b161c/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index c45f67b..55c1bb5 100644 --- a/build.xml +++ b/build.xml @@ -78,7 +78,7 @@ <ant dir="compiler" target="release-binaries" /> </target> - <target name="tests" description="Runs the tests."> + <target name="tests" description="Runs the tests." unless="skip.compiler.tests"> <ant dir="compiler.tests" target="main"/> </target> @@ -185,7 +185,7 @@ <ant dir="compiler.jx" target="main"/> </target> - <target name="compiler.jx.tests" description="Runs the tests."> + <target name="compiler.jx.tests" description="Runs the tests." unless="skip.compiler.jx.tests"> <ant dir="compiler.jx.tests" target="main"/> </target>
