From 3b20b4615d01644f1045b0cf99341a6227159c74 Mon Sep 17 00:00:00 2001 From: David Roazen Date: Fri, 1 Jun 2012 15:03:43 -0400 Subject: [PATCH] ant fasttest: for when you just can't wait Cuts major corners for speed. Tests start in SECONDS instead of minutes. SIGNIFICANT limitations (see below!) Usage: ant fasttest -Dsingle=TestClass The idea is that you do a regular "ant test -Dsingle=TestClass" (or "ant committests") FIRST, then do "ant fasttest -Dsingle=TestClass" for all subsequent runs until satisfied. LIMITATIONS: -REQUIRES that a full test build has already been done (using one of the test targets like committests, or a manual "ant test.compile"). -Java only -Single test class only -No contracts -Build jars in dist/ not updated, only classes in build/ -Version number output at runtime may be incorrect --- build.xml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/build.xml b/build.xml index ac82abbaf..0a4cd2171 100644 --- a/build.xml +++ b/build.xml @@ -1321,4 +1321,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +