<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-2364</id>
	<title>Nabble - Ant Contrib</title>
	<updated>2009-11-09T01:10:47Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Ant-Contrib-f2364.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Ant-Contrib-f2364.html" />
	<subtitle type="html">The Ant-Contrib project is a collection of tasks (and at one point maybe types and other tools) for Apache Ant.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26263274</id>
	<title>Fwd: PostMethod task + MyClient bugs???</title>
	<published>2009-11-09T01:10:47Z</published>
	<updated>2009-11-09T01:10:47Z</updated>
	<author>
		<name>А.А. Дубовский</name>
	</author>
	<content type="html">Hello.
&lt;br&gt;&lt;br&gt;1) I have noticed the bug in the documentation see
&lt;br&gt;apache\ant\docs\manual\tasks\http-client_type.html.
&lt;br&gt;The RFC2109 should be used instead of RFC_2109 (which cases an
&lt;br&gt;exception: java.lang.IllegalStateException: Unsupported cookie spec
&lt;br&gt;RFC_2109)
&lt;br&gt;&lt;br&gt;2) I believe that there are some bugs in
&lt;br&gt;&amp;quot;net/sf/antcontrib/net/httpclient/PostMethodTask.java&amp;quot;.
&lt;br&gt;I belive that the first parameter in
&lt;br&gt;==================================
&lt;br&gt;partArray[i] = new FilePart(filePart.getPath().getName(),
&lt;br&gt;                                filePart.getPath().getName(),
&lt;br&gt;                                filePart.getPath(),
&lt;br&gt;                                filePart.getContentType(),
&lt;br&gt;                                filePart.getCharSet());
&lt;br&gt;==================================
&lt;br&gt;Should be the name of file attribute (file-input control) not the
&lt;br&gt;filename. (see attached patched file)
&lt;br&gt;&lt;br&gt;For example: Mozilla uses different names for file and for parameter:
&lt;br&gt;-----------------------------------------
&lt;br&gt;Content-Disposition: form-data; name=&amp;quot;pic_file[]&amp;quot;;
&lt;br&gt;filename=&amp;quot;AbstractMethodTask.class&amp;quot;
&lt;br&gt;-----------------------------------------
&lt;br&gt;&lt;br&gt;3) Have anybody succeeded in uploading file to the server. I can't
&lt;br&gt;still do it :(. But I can not also file a bug.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks a lot.
&lt;br&gt;Andrei.
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26263274&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;PostMethodTask.java&lt;/strong&gt; (8K) &lt;a href=&quot;http://old.nabble.com/attachment/26263274/0/PostMethodTask.java&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PostMethod-task-%2B-MyClient-bugs----tp26249594p26263274.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26249594</id>
	<title>PostMethod task + MyClient bugs???</title>
	<published>2009-11-07T14:55:40Z</published>
	<updated>2009-11-07T14:55:40Z</updated>
	<author>
		<name>А.А. Дубовский</name>
	</author>
	<content type="html">Hello.&lt;br&gt;&lt;br&gt;1) I have noticed the bug in the documentation see apache\ant\docs\manual\tasks\http-client_type.html.&lt;br&gt;The RFC2109 should be used instead of RFC_2109 (which cases an exception: java.lang.IllegalStateException: Unsupported cookie spec RFC_2109)&lt;br&gt;
&lt;br&gt;2) I believe that there are some bugs in &amp;quot;net/sf/antcontrib/net/httpclient/PostMethodTask.java&amp;quot;.&lt;br&gt;I belive that the first parameter in&lt;br&gt;==================================&lt;br&gt;partArray[i] = new FilePart(filePart.getPath().getName(),&lt;br&gt;
                                filePart.getPath().getName(),&lt;br&gt;                                filePart.getPath(),&lt;br&gt;                                filePart.getContentType(),&lt;br&gt;                                filePart.getCharSet());&lt;br&gt;
==================================&lt;br&gt;Should be the name of file attribute (file-input control) not the filename. (see attached patched file)&lt;br&gt;&lt;br&gt;For example: Mozilla uses different names for file and for parameter:&lt;br&gt;
-----------------------------------------&lt;br&gt;Content-Disposition: form-data; name=&amp;quot;pic_file[]&amp;quot;; filename=&amp;quot;AbstractMethodTask.class&amp;quot;&lt;br&gt;-----------------------------------------&lt;br&gt;&lt;br&gt;3) Have anybody succeeded in uploading file to the server. I can&amp;#39;t still do it :(. But I can not also file a bug.&lt;br&gt;
&lt;br&gt;&lt;br&gt;Thanks a lot.&lt;br&gt;Andrei.&lt;br&gt;
&lt;br /&gt; &lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
&lt;br&gt;trial. Simplify your report design, integration and deployment - and focus on 
&lt;br&gt;what you do best, core application coding. Discover what's new with
&lt;br&gt;Crystal Reports now. &amp;nbsp;&lt;a href=&quot;http://p.sf.net/sfu/bobj-july&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/bobj-july&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26249594&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;PostMethodTask.java&lt;/strong&gt; (8K) &lt;a href=&quot;http://old.nabble.com/attachment/26249594/0/PostMethodTask.java&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/PostMethod-task-%2B-MyClient-bugs----tp26249594p26249594.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25712593</id>
	<title>Var task to be exactly like properties except the write only once</title>
	<published>2009-10-02T02:07:19Z</published>
	<updated>2009-10-02T02:07:19Z</updated>
	<author>
		<name>Raja Nagendra Kumar</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Var task currently supports only value attribute. However the location attribute and other attributes such as file, url etc all are very needed.
&lt;br&gt;&lt;br&gt;Would be nice to see var evolves and maintained in the same way syntax and options as property task.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Raja Nagendra Kumar,
&lt;br&gt;C.T.O
&lt;br&gt;www.tejasoft.com
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Var-task-to-be-exactly-like-properties-except-the-write-only-once-tp25712593p25712593.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25558614</id>
	<title>[SPAM] [GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-09-22T04:51:20Z</published>
	<updated>2009-09-22T04:51:20Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25558614&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 15 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 24 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-22092009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=22092009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-22092009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-22092009.
&lt;br&gt;&amp;nbsp;jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.SwitchTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.117 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.01 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.063 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.07 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 3.558 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 1, Time elapsed: 4.306 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: test2(net.sf.antcontrib.process.LimitTest):	Caused an ERROR
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Too much time.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.process.LimitTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.042 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.058 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.093 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.131 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.037 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:299: JUnit error (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 24 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 09000022092009, vmgump:vmgump-public:09000022092009
&lt;br&gt;Gump E-mail Identifier (unique within run) #43.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Come build with us! The BlackBerry&amp;reg; Developer Conference in SF, CA
&lt;br&gt;is the only developer event you need to attend this year. Jumpstart your
&lt;br&gt;developing skills, take BlackBerry mobile applications to market and stay 
&lt;br&gt;ahead of the curve. Join us from November 9&amp;#45;12, 2009. Register now&amp;#33;
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/devconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/devconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25558614&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-SPAM---GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp25558614p25558614.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25075026</id>
	<title>Re: Ant-contrib &lt;for&gt; task</title>
	<published>2009-08-20T23:55:06Z</published>
	<updated>2009-08-20T23:55:06Z</updated>
	<author>
		<name>fabien29200</name>
	</author>
	<content type="html">I mispelled the name of the jar, the version was the 1.0b2.
&lt;br&gt;&lt;br&gt;&lt;quote author=&quot;leeand00&quot;&gt;&lt;br&gt;Where did you even get version ant-contrib 1.02b? &amp;nbsp;I don't see it on sourceforge.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;fabien29200 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi !
&lt;br&gt;&lt;br&gt;I just faced the same problem with ant-contrib 1.02b.
&lt;br&gt;The answer is simple, if you open net/sf/antcontrib/antcontrib.properties file, you'll see that at the end :
&lt;br&gt;&lt;br&gt;# Tasks Requiring Ant 1.6 or higher
&lt;br&gt;#for=net.sf.antcontrib.logic.For
&lt;br&gt;math=net.sf.antcontrib.math.MathTask
&lt;br&gt;&lt;br&gt;As you can see, the FOR task is simply commented ... (I don't know why).
&lt;br&gt;Just uncomment the line, update the jar and you're done !
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Slickscorp wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&lt;br&gt;I am using ant 1.6.5 and am an ant beginner.
&lt;br&gt;&lt;br&gt;I found the ant-contrib tasks which have been very helpful in writing my
&lt;br&gt;ant script. &amp;nbsp;Now I decide to make use of the &amp;lt;for&amp;gt; task and I get the
&lt;br&gt;traditional error we've all seen before.
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;&amp;lt;path&amp;gt;/build.xml:902: Could not create task or type of type: for.
&lt;br&gt;&lt;br&gt;Simplified code is below, and the failure occurs on the &amp;lt;for&amp;gt; task only.
&lt;br&gt;Other ant-contrib tasks like &amp;lt;propertyselector, sortlist&amp;gt; shown below,
&lt;br&gt;have no problem, so its not that the jar file can't be located. I also
&lt;br&gt;tried cutting and pasting the first example of the &amp;lt;for&amp;gt; task from the
&lt;br&gt;documentation, but this has the same problem.
&lt;br&gt;&lt;br&gt;&amp;lt;?xml version = '1.0' encoding = 'ISO-8859-1' ?&amp;gt;
&lt;br&gt;&amp;lt;project name=&amp;quot;MY_PROJECT&amp;quot; default=&amp;quot;post-install-notes&amp;quot; basedir=&amp;quot;.&amp;quot; &amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;taskdef resource=&amp;quot;net/sf/antcontrib/antcontrib.properties&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;post-install-notes-1&amp;quot; value=&amp;quot;Hello&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;post-install-notes-2&amp;quot; value=&amp;quot;World&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;target name=&amp;quot;post-install-notes&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;echo message=&amp;quot;POST INSTALL NOTES&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;propertyselector property=&amp;quot;install-notes&amp;quot;
&lt;br&gt;match=&amp;quot;post-install-notes.*&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sortlist property=&amp;quot;install-notes-sorted&amp;quot;
&lt;br&gt;value=&amp;quot;${install-notes}&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;for list=&amp;quot;${install-notes-sorted}&amp;quot; param=&amp;quot;property-name&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sequential&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;echo message=&amp;quot;@{property-name}&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/sequential&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/for&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/target&amp;gt;
&lt;br&gt;&amp;lt;/project&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any help would be appreciated. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;This message and any attachments are confidential, proprietary, and may be privileged. &amp;nbsp;If this message was misdirected, Barclays Global Investors (BGI) does not waive any confidentiality or privilege. &amp;nbsp;If you are not the intended recipient, please notify us immediately and destroy the message without disclosing its contents to anyone. &amp;nbsp;Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. &amp;nbsp;The views and opinions expressed in this e-mail message are the author's own and may not reflect the views and opinions of BGI, unless the author is authorized by BGI to express such views or opinions on its behalf. &amp;nbsp;All email sent to or from this address is subject to electronic storage and review by BGI. &amp;nbsp;Although BGI operates anti-virus programs, it does not accept responsibility for any damage whatsoever caused by viruses being passed. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Barclays Global Investors Limited is authorized and regulated by The Financial Services Authority. Registered in England. Registered No:796793. Registered Office: 1 Churchill Place, London E14 5HP.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;Ant-contrib-developers@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Ant-contrib-%3Cfor%3E-task-tp16339611p25075026.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25067661</id>
	<title>Custom ANT Task not working in &lt;for&gt; loop</title>
	<published>2009-08-20T11:45:24Z</published>
	<updated>2009-08-20T11:45:24Z</updated>
	<author>
		<name>leeand00</name>
	</author>
	<content type="html">Hello, 

I've written a custom ANT task for purposes of returning an associated value from a file (that works almost like a hash map):
&lt;pre&gt;
&lt;blockquote&gt;
&quot;I11_home.htm&quot;,                   &quot;1683&quot;
&quot;I11_office_catalog.htm&quot;,       &quot;1546&quot;
&quot;I11_mixed_catalog.htm&quot;,       &quot;1673&quot;
&quot;I11_approve.htm&quot;,                &quot;527&quot;
&quot;I11_reports.htm&quot;,                 &quot;1547&quot;
&quot;I11_history.htm&quot;,                 &quot;1548&quot;
&quot;I11_settings.htm&quot;,               &quot;1549&quot;
&quot;I11_pricing.htm&quot;,                 &quot;1550&quot;
&quot;I11_edit_imprint.htm&quot;,          &quot;1551&quot;
&quot;I11_review_imprint.htm&quot;,       &quot;1552&quot;
&quot;I11_checkout.htm&quot;,              &quot;1671&quot;
&quot;I11_payment.htm&quot;,               &quot;1567&quot;
&quot;I11_confirm.htm&quot;,                &quot;1556&quot;
&lt;/blockquote&gt;
&lt;/pre&gt;

The left hand column above contains what the file is currently named.  &lt;br /&gt;
The right hand column above contains what I would like to rename the file to. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;


Now it's my Custom ANT task's job to take an argument of the file name, and return the corresponding file name for ANT to rename it to.

In my ANT &lt;b&gt;build.xml&lt;/b&gt; file I have 

&lt;pre&gt;
&lt;blockquote&gt;
	&amp;lt;echo&amp;gt;DL List: ${csvDownloadList}&amp;lt;/echo&amp;gt;
        &amp;lt;for list=&quot;${csvDownloadList}&quot;
                 param=&quot;letter&quot;&amp;gt;
             &amp;lt;sequential&amp;gt;
                
                &amp;lt;!-- Figureout what the file needs to be renamed to --&amp;gt;
                &amp;lt;XebraCodeRelate fileText=&quot;${file.configs.txt}&quot; forFile=&quot;@{letter}&quot; property=&quot;renameTo&quot; /&amp;gt;
                &amp;lt;echo&amp;gt; ------------------------------------- &amp;lt;/echo&amp;gt;
                &amp;lt;echo&amp;gt; Renaming file @{letter} to ${renameTo}&amp;lt;/echo&amp;gt;
                &amp;lt;echo&amp;gt; ------------------------------------- &amp;lt;/echo&amp;gt;
                
                
                &amp;lt;move file=&quot;@{letter}&quot; tofile=&quot;${renameTo}&quot; /&amp;gt;

                &amp;lt;var name=&quot;renameTo&quot; unset=&quot;true&quot;/&amp;gt;
                
             &amp;lt;/sequential&amp;gt;
        &amp;lt;/for&amp;gt;
&lt;/blockquote&gt;
 &lt;/pre&gt;

Note that ${csvDownloadList} looks like this: &lt;br /&gt;&lt;br /&gt;
1683,1546,1673,527,1547,1548,1549,1550,1551,1552,1671,1567,1556
&lt;br /&gt;&lt;br /&gt;
However for some reason my &amp;lt;for&amp;gt; loop craps out after renaming one file.  It seems to have something to do with my Custom ANT Task not being able to work within a  &amp;lt;for&amp;gt; loop.

Why is this?  Is there some other class besides Task I need to extend to make this work?&lt;div class=&quot;signature&quot;&gt;Thank you,&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;Andrew J. Leer - &lt;a href=&quot;http://leeand00.tiddlyspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;My Blog&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Custom-ANT-Task-not-working-in-%3Cfor%3E-loop-tp25067661p25067661.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25064513</id>
	<title>Re: Ant-contrib &lt;for&gt; task</title>
	<published>2009-08-20T08:41:26Z</published>
	<updated>2009-08-20T08:41:26Z</updated>
	<author>
		<name>leeand00</name>
	</author>
	<content type="html">Where did you even get version ant-contrib 1.02b? &amp;nbsp;I don't see it on sourceforge.
&lt;br&gt;&lt;br&gt;&lt;quote author=&quot;fabien29200&quot;&gt;&lt;br&gt;Hi !
&lt;br&gt;&lt;br&gt;I just faced the same problem with ant-contrib 1.02b.
&lt;br&gt;The answer is simple, if you open net/sf/antcontrib/antcontrib.properties file, you'll see that at the end :
&lt;br&gt;&lt;br&gt;# Tasks Requiring Ant 1.6 or higher
&lt;br&gt;#for=net.sf.antcontrib.logic.For
&lt;br&gt;math=net.sf.antcontrib.math.MathTask
&lt;br&gt;&lt;br&gt;As you can see, the FOR task is simply commented ... (I don't know why).
&lt;br&gt;Just uncomment the line, update the jar and you're done !
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Slickscorp wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&lt;br&gt;I am using ant 1.6.5 and am an ant beginner.
&lt;br&gt;&lt;br&gt;I found the ant-contrib tasks which have been very helpful in writing my
&lt;br&gt;ant script. &amp;nbsp;Now I decide to make use of the &amp;lt;for&amp;gt; task and I get the
&lt;br&gt;traditional error we've all seen before.
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;&amp;lt;path&amp;gt;/build.xml:902: Could not create task or type of type: for.
&lt;br&gt;&lt;br&gt;Simplified code is below, and the failure occurs on the &amp;lt;for&amp;gt; task only.
&lt;br&gt;Other ant-contrib tasks like &amp;lt;propertyselector, sortlist&amp;gt; shown below,
&lt;br&gt;have no problem, so its not that the jar file can't be located. I also
&lt;br&gt;tried cutting and pasting the first example of the &amp;lt;for&amp;gt; task from the
&lt;br&gt;documentation, but this has the same problem.
&lt;br&gt;&lt;br&gt;&amp;lt;?xml version = '1.0' encoding = 'ISO-8859-1' ?&amp;gt;
&lt;br&gt;&amp;lt;project name=&amp;quot;MY_PROJECT&amp;quot; default=&amp;quot;post-install-notes&amp;quot; basedir=&amp;quot;.&amp;quot; &amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;taskdef resource=&amp;quot;net/sf/antcontrib/antcontrib.properties&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;post-install-notes-1&amp;quot; value=&amp;quot;Hello&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;post-install-notes-2&amp;quot; value=&amp;quot;World&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;target name=&amp;quot;post-install-notes&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;echo message=&amp;quot;POST INSTALL NOTES&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;propertyselector property=&amp;quot;install-notes&amp;quot;
&lt;br&gt;match=&amp;quot;post-install-notes.*&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sortlist property=&amp;quot;install-notes-sorted&amp;quot;
&lt;br&gt;value=&amp;quot;${install-notes}&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;for list=&amp;quot;${install-notes-sorted}&amp;quot; param=&amp;quot;property-name&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sequential&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;echo message=&amp;quot;@{property-name}&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/sequential&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/for&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/target&amp;gt;
&lt;br&gt;&amp;lt;/project&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any help would be appreciated. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;This message and any attachments are confidential, proprietary, and may be privileged. &amp;nbsp;If this message was misdirected, Barclays Global Investors (BGI) does not waive any confidentiality or privilege. &amp;nbsp;If you are not the intended recipient, please notify us immediately and destroy the message without disclosing its contents to anyone. &amp;nbsp;Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. &amp;nbsp;The views and opinions expressed in this e-mail message are the author's own and may not reflect the views and opinions of BGI, unless the author is authorized by BGI to express such views or opinions on its behalf. &amp;nbsp;All email sent to or from this address is subject to electronic storage and review by BGI. &amp;nbsp;Although BGI operates anti-virus programs, it does not accept responsibility for any damage whatsoever caused by viruses being passed. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Barclays Global Investors Limited is authorized and regulated by The Financial Services Authority. Registered in England. Registered No:796793. Registered Office: 1 Churchill Place, London E14 5HP.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;Ant-contrib-developers@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;br&gt;&lt;div class=&quot;signature&quot;&gt;Thank you,&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;Andrew J. Leer - &lt;a href=&quot;http://leeand00.tiddlyspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;My Blog&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Ant-contrib-%3Cfor%3E-task-tp16339611p25064513.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-24285725</id>
	<title>MS devenv task</title>
	<published>2009-07-01T00:57:49Z</published>
	<updated>2009-07-01T00:57:49Z</updated>
	<author>
		<name>jamin</name>
	</author>
	<content type="html">Hi all,&lt;br&gt;&lt;br&gt;I&amp;#39;ve written a task for my job, to encapsulate microsoft devenv process.&lt;br&gt;I think that :&lt;br&gt;- some other people may be interested, &lt;br&gt;- it&amp;#39;s better to integrate it in an open source project, rather than keeping it alone. &lt;br&gt;
&lt;br&gt;Of course I have to clean it a little bit and write some unit tests, but I would like to know if you&amp;#39;re interested by this idea ?&lt;br&gt;&lt;br&gt;Best regards,&lt;br&gt;Benjamin&lt;br&gt;
&lt;br /&gt;------------------------------------------------------------------------------
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=24285725&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/MS-devenv-task-tp24285725p24285725.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23981552</id>
	<title>Re: Ant-contrib &lt;for&gt; task</title>
	<published>2009-06-11T06:42:43Z</published>
	<updated>2009-06-11T06:42:43Z</updated>
	<author>
		<name>fabien29200</name>
	</author>
	<content type="html">Hi !
&lt;br&gt;&lt;br&gt;I just faced the same problem with ant-contrib 1.02b.
&lt;br&gt;The answer is simple, if you open net/sf/antcontrib/antcontrib.properties file, you'll see that at the end :
&lt;br&gt;&lt;br&gt;# Tasks Requiring Ant 1.6 or higher
&lt;br&gt;#for=net.sf.antcontrib.logic.For
&lt;br&gt;math=net.sf.antcontrib.math.MathTask
&lt;br&gt;&lt;br&gt;As you can see, the FOR task is simply commented ... (I don't know why).
&lt;br&gt;Just uncomment the line, update the jar and you're done !
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Slickscorp wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&lt;br&gt;I am using ant 1.6.5 and am an ant beginner.
&lt;br&gt;&lt;br&gt;I found the ant-contrib tasks which have been very helpful in writing my
&lt;br&gt;ant script. &amp;nbsp;Now I decide to make use of the &amp;lt;for&amp;gt; task and I get the
&lt;br&gt;traditional error we've all seen before.
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;&amp;lt;path&amp;gt;/build.xml:902: Could not create task or type of type: for.
&lt;br&gt;&lt;br&gt;Simplified code is below, and the failure occurs on the &amp;lt;for&amp;gt; task only.
&lt;br&gt;Other ant-contrib tasks like &amp;lt;propertyselector, sortlist&amp;gt; shown below,
&lt;br&gt;have no problem, so its not that the jar file can't be located. I also
&lt;br&gt;tried cutting and pasting the first example of the &amp;lt;for&amp;gt; task from the
&lt;br&gt;documentation, but this has the same problem.
&lt;br&gt;&lt;br&gt;&amp;lt;?xml version = '1.0' encoding = 'ISO-8859-1' ?&amp;gt;
&lt;br&gt;&amp;lt;project name=&amp;quot;MY_PROJECT&amp;quot; default=&amp;quot;post-install-notes&amp;quot; basedir=&amp;quot;.&amp;quot; &amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;taskdef resource=&amp;quot;net/sf/antcontrib/antcontrib.properties&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;post-install-notes-1&amp;quot; value=&amp;quot;Hello&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;post-install-notes-2&amp;quot; value=&amp;quot;World&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;target name=&amp;quot;post-install-notes&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;echo message=&amp;quot;POST INSTALL NOTES&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;propertyselector property=&amp;quot;install-notes&amp;quot;
&lt;br&gt;match=&amp;quot;post-install-notes.*&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sortlist property=&amp;quot;install-notes-sorted&amp;quot;
&lt;br&gt;value=&amp;quot;${install-notes}&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;for list=&amp;quot;${install-notes-sorted}&amp;quot; param=&amp;quot;property-name&amp;quot; &amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sequential&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;echo message=&amp;quot;@{property-name}&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/sequential&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/for&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/target&amp;gt;
&lt;br&gt;&amp;lt;/project&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any help would be appreciated. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;This message and any attachments are confidential, proprietary, and may be privileged. &amp;nbsp;If this message was misdirected, Barclays Global Investors (BGI) does not waive any confidentiality or privilege. &amp;nbsp;If you are not the intended recipient, please notify us immediately and destroy the message without disclosing its contents to anyone. &amp;nbsp;Any distribution, use or copying of this e-mail or the information it contains by other than an intended recipient is unauthorized. &amp;nbsp;The views and opinions expressed in this e-mail message are the author's own and may not reflect the views and opinions of BGI, unless the author is authorized by BGI to express such views or opinions on its behalf. &amp;nbsp;All email sent to or from this address is subject to electronic storage and review by BGI. &amp;nbsp;Although BGI operates anti-virus programs, it does not accept responsibility for any damage whatsoever caused by viruses being passed. 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Barclays Global Investors Limited is authorized and regulated by The Financial Services Authority. Registered in England. Registered No:796793. Registered Office: 1 Churchill Place, London E14 5HP.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Check out the new SourceForge.net Marketplace.
&lt;br&gt;It's the best place to buy or sell services for
&lt;br&gt;just about anything Open Source.
&lt;br&gt;&lt;a href=&quot;http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;Ant-contrib-developers@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Ant-contrib-%3Cfor%3E-task-tp16339611p23981552.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23923945</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-06-08T05:14:13Z</published>
	<updated>2009-06-08T05:14:13Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23923945&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 14 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 49 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-08062009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=08062009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-08062009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-08062009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.008 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.064 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.061 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.049 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.029 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 8.524 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.059 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.001 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.078 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.19 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.027 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 48 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 40000008062009, vmgump:vmgump-public:40000008062009
&lt;br&gt;Gump E-mail Identifier (unique within run) #36.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23923945&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23923945p23923945.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23901611</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-06-06T05:21:42Z</published>
	<updated>2009-06-06T05:21:42Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23901611&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 11 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 4 mins 15 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-06062009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=06062009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-06062009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-06062009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.707 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 6.92 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 7.483 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.108 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.509 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 29.23 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.532 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.227 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 7.358 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.37 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 19.106 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.919 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 4 minutes 14 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 40000006062009, vmgump:vmgump-public:40000006062009
&lt;br&gt;Gump E-mail Identifier (unique within run) #32.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23901611&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23901611p23901611.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23868555</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-06-04T04:59:35Z</published>
	<updated>2009-06-04T04:59:35Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23868555&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 8 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 39 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-04062009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=04062009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-04062009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-04062009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.008 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.056 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.233 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.018 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 4.93 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.078 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.044 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.056 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.118 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.099 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.029 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 39 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 11000004062009, vmgump:vmgump-public:11000004062009
&lt;br&gt;Gump E-mail Identifier (unique within run) #32.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23868555&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23868555p23868555.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23831050</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-06-02T04:47:10Z</published>
	<updated>2009-06-02T04:47:10Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23831050&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 5 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 38 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-02062009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=02062009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-02062009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-02062009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.009 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.061 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.071 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.023 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 5.267 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.075 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.043 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.05 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.048 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.105 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.029 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 37 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 12000002062009, vmgump:vmgump-public:12000002062009
&lt;br&gt;Gump E-mail Identifier (unique within run) #37.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
&lt;br&gt;looking to deploy the next generation of Solaris that includes the latest 
&lt;br&gt;innovations from Sun and the OpenSource community. Download a copy and 
&lt;br&gt;enjoy capabilities such as Networking, Storage and Virtualization. 
&lt;br&gt;Go to: &lt;a href=&quot;http://p.sf.net/sfu/opensolaris-get&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/opensolaris-get&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23831050&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23831050p23831050.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23802476</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-31T05:10:31Z</published>
	<updated>2009-05-31T05:10:31Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23802476&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 2 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 51 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-31052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=31052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-31052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-31052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.04 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.152 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.112 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.068 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 8.193 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.112 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.1 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.051 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.048 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.26 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.069 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 50 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 35000031052009, vmgump:vmgump-public:35000031052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #33.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
&lt;br&gt;is a gathering of tech-side developers &amp; brand creativity professionals. Meet
&lt;br&gt;the minds behind Google Creative Lab, Visual Complexity, Processing, &amp; 
&lt;br&gt;iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
&lt;br&gt;Group, R/GA, &amp; Big Spaceship. &lt;a href=&quot;http://p.sf.net/sfu/creativitycat-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/creativitycat-com&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23802476&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23802476p23802476.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23796724</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-30T12:43:25Z</published>
	<updated>2009-05-30T12:43:25Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23796724&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 36 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-30052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=30052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-30052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-30052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.033 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.162 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.207 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.051 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.063 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 3.597 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.075 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.043 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.058 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.05 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.206 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 36 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 32000830052009, vmgump:vmgump-public:32000830052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #18.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
&lt;br&gt;is a gathering of tech-side developers &amp; brand creativity professionals. Meet
&lt;br&gt;the minds behind Google Creative Lab, Visual Complexity, Processing, &amp; 
&lt;br&gt;iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
&lt;br&gt;Group, R/GA, &amp; Big Spaceship. &lt;a href=&quot;http://p.sf.net/sfu/creativitycat-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/creativitycat-com&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23796724&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23796724p23796724.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23742249</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-27T05:40:39Z</published>
	<updated>2009-05-27T05:40:39Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23742249&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 7 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 4 mins 24 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-27052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=27052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-27052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-27052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.635 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 6.982 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 5.089 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.138 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.572 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 28.642 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 6.056 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.399 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 11.869 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 5.266 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 25.487 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.364 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 4 minutes 23 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 09000027052009, vmgump:vmgump-public:09000027052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #33.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
&lt;br&gt;is a gathering of tech-side developers &amp; brand creativity professionals. Meet
&lt;br&gt;the minds behind Google Creative Lab, Visual Complexity, Processing, &amp; 
&lt;br&gt;iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
&lt;br&gt;Group, R/GA, &amp; Big Spaceship. &lt;a href=&quot;http://p.sf.net/sfu/creativitycat-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/creativitycat-com&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23742249&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23742249p23742249.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23724419</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-26T07:37:04Z</published>
	<updated>2009-05-26T07:37:04Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23724419&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 5 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 37 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-26052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=26052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-26052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-26052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.008 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.159 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.068 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.023 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 4.972 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.076 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.046 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.052 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.041 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.1 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 36 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 06000026052009, vmgump:vmgump-public:06000026052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #53.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
&lt;br&gt;is a gathering of tech-side developers &amp; brand creativity professionals. Meet
&lt;br&gt;the minds behind Google Creative Lab, Visual Complexity, Processing, &amp; 
&lt;br&gt;iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
&lt;br&gt;Group, R/GA, &amp; Big Spaceship. &lt;a href=&quot;http://www.creativitycat.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.creativitycat.com&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23724419&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23724419p23724419.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23694716</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-24T08:19:56Z</published>
	<updated>2009-05-24T08:19:56Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23694716&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 2 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 37 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-24052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=24052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-24052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-24052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.007 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.085 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.094 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.018 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 3.179 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.057 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.044 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.067 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.102 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.099 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 36 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 26000024052009, vmgump:vmgump-public:26000024052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #50.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
&lt;br&gt;is a gathering of tech-side developers &amp; brand creativity professionals. Meet
&lt;br&gt;the minds behind Google Creative Lab, Visual Complexity, Processing, &amp; 
&lt;br&gt;iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
&lt;br&gt;Group, R/GA, &amp; Big Spaceship. &lt;a href=&quot;http://www.creativitycat.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.creativitycat.com&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23694716&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23694716p23694716.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23689181</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-23T16:14:20Z</published>
	<updated>2009-05-23T16:14:20Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23689181&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 39 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-23052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=23052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-23052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-23052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.013 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.058 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.067 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.018 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 3.12 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.081 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.04 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.045 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.04 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.106 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.027 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 38 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 26000823052009, vmgump:vmgump-public:26000823052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #13.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
&lt;br&gt;is a gathering of tech-side developers &amp; brand creativity professionals. Meet
&lt;br&gt;the minds behind Google Creative Lab, Visual Complexity, Processing, &amp; 
&lt;br&gt;iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
&lt;br&gt;Group, R/GA, &amp; Big Spaceship. &lt;a href=&quot;http://www.creativitycat.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.creativitycat.com&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23689181&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23689181p23689181.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23682199</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-23T00:56:50Z</published>
	<updated>2009-05-23T00:56:50Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23682199&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 36 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-22052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=22052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-22052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-22052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.012 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.061 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.139 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.016 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.023 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 3.176 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.135 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.072 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.05 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.046 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.102 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.027 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 35 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 09001622052009, vmgump:vmgump-public:09001622052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #13.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
&lt;br&gt;is a gathering of tech-side developers &amp; brand creativity professionals. Meet
&lt;br&gt;the minds behind Google Creative Lab, Visual Complexity, Processing, &amp; 
&lt;br&gt;iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
&lt;br&gt;Group, R/GA, &amp; Big Spaceship. &lt;a href=&quot;http://www.creativitycat.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.creativitycat.com&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23682199&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23682199p23682199.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23655391</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-21T08:37:24Z</published>
	<updated>2009-05-21T08:37:24Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23655391&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 56 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 4 mins 56 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-21052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=21052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-21052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-21052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 2.249 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 7.909 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 10.011 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.308 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.154 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 35.621 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.851 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.352 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 8.51 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.543 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 19.957 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.973 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 4 minutes 55 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 15000021052009, vmgump:vmgump-public:15000021052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #51.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
&lt;br&gt;is a gathering of tech-side developers &amp; brand creativity professionals. Meet
&lt;br&gt;the minds behind Google Creative Lab, Visual Complexity, Processing, &amp; 
&lt;br&gt;iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
&lt;br&gt;Group, R/GA, &amp; Big Spaceship. &lt;a href=&quot;http://www.creativitycat.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.creativitycat.com&lt;/a&gt;&amp;nbsp;
&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23655391&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23655391p23655391.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23618778</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-19T08:30:50Z</published>
	<updated>2009-05-19T08:30:50Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23618778&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 53 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 4 mins 32 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-19052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=19052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-19052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-19052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.631 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 7.785 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 7.592 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.215 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.714 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 30.304 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.59 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.22 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 8.456 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.454 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 21.021 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 5.372 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 4 minutes 31 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 26000019052009, vmgump:vmgump-public:26000019052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #49.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Crystal Reports - New Free Runtime and 30 Day Trial
&lt;br&gt;Check out the new simplified licensing option that enables 
&lt;br&gt;unlimited royalty-free distribution of the report engine 
&lt;br&gt;for externally facing server and web deployment. 
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/businessobjects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/businessobjects&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23618778&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23618778p23618778.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23584509</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-17T08:37:34Z</published>
	<updated>2009-05-17T08:37:34Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23584509&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 50 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 36 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-17052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=17052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-17052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-17052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.01 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.066 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.149 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.022 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.025 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 3.052 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.06 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.041 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.051 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.053 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.113 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 35 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 29000017052009, vmgump:vmgump-public:29000017052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #45.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Crystal Reports - New Free Runtime and 30 Day Trial
&lt;br&gt;Check out the new simplified licensing option that enables 
&lt;br&gt;unlimited royalty-free distribution of the report engine 
&lt;br&gt;for externally facing server and web deployment. 
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/businessobjects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/businessobjects&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23584509&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23584509p23584509.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23563012</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-15T09:15:57Z</published>
	<updated>2009-05-15T09:15:57Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23563012&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 47 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 4 mins 20 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-15052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=15052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-15052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-15052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.661 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 7.24 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 7.569 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.141 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.614 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 27.996 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.742 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.463 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 7.842 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.618 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 19.072 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.799 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 4 minutes 19 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 22000015052009, vmgump:vmgump-public:22000015052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #47.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Crystal Reports - New Free Runtime and 30 Day Trial
&lt;br&gt;Check out the new simplified licensing option that enables 
&lt;br&gt;unlimited royalty-free distribution of the report engine 
&lt;br&gt;for externally facing server and web deployment. 
&lt;br&gt;&lt;a href=&quot;http://p.sf.net/sfu/businessobjects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/businessobjects&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23563012&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23563012p23563012.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23524624</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-13T08:51:13Z</published>
	<updated>2009-05-13T08:51:13Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23524624&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 44 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 36 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-13052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=13052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-13052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-13052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.057 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.123 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.024 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.02 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 2.6 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.063 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.038 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.037 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.041 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.166 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.026 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 35 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 07000013052009, vmgump:vmgump-public:07000013052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #48.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
&lt;br&gt;production scanning environment may not be a perfect world - but thanks to
&lt;br&gt;Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
&lt;br&gt;Series Scanner you'll get full speed at 300 dpi even with all image 
&lt;br&gt;processing features enabled. &lt;a href=&quot;http://p.sf.net/sfu/kodak-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/kodak-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23524624&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23524624p23524624.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23486728</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-11T09:27:35Z</published>
	<updated>2009-05-11T09:27:35Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23486728&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 41 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 4 mins 8 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-11052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=11052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-11052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-11052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.735 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 6.854 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 6.625 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.204 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.602 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 27.108 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.627 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.337 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 7.552 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.649 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 18.616 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 5.035 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 4 minutes 7 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 08000011052009, vmgump:vmgump-public:08000011052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #45.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
&lt;br&gt;production scanning environment may not be a perfect world - but thanks to
&lt;br&gt;Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
&lt;br&gt;Series Scanner you'll get full speed at 300 dpi even with all image 
&lt;br&gt;processing features enabled. &lt;a href=&quot;http://p.sf.net/sfu/kodak-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/kodak-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23486728&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23486728p23486728.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23470471</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-10T06:51:20Z</published>
	<updated>2009-05-10T06:51:20Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23470471&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 38 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 4 mins 56 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-10052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=10052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-10052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-10052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.834 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 8.407 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 7.782 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.46 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.762 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 31.43 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 6.317 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.11 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 12.579 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 5.433 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 27.287 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.164 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 4 minutes 55 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 08000010052009, vmgump:vmgump-public:08000010052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #51.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
&lt;br&gt;production scanning environment may not be a perfect world - but thanks to
&lt;br&gt;Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
&lt;br&gt;Series Scanner you'll get full speed at 300 dpi even with all image 
&lt;br&gt;processing features enabled. &lt;a href=&quot;http://p.sf.net/sfu/kodak-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/kodak-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23470471&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23470471p23470471.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23460959</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-09T06:44:38Z</published>
	<updated>2009-05-09T06:44:38Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23460959&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 35 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 4 mins 32 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-09052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=09052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-09052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-09052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.558 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 7.273 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 5.735 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.399 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.013 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 29.615 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 6.073 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.819 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 12.528 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 5.453 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 26.099 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 3.522 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 4 minutes 31 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 08000009052009, vmgump:vmgump-public:08000009052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #48.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
&lt;br&gt;production scanning environment may not be a perfect world - but thanks to
&lt;br&gt;Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
&lt;br&gt;Series Scanner you'll get full speed at 300 dpi even with all image 
&lt;br&gt;processing features enabled. &lt;a href=&quot;http://p.sf.net/sfu/kodak-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/kodak-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23460959&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23460959p23460959.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23447545</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-08T07:51:24Z</published>
	<updated>2009-05-08T07:51:24Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23447545&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 33 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 38 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-08052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=08052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-08052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-08052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.009 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.058 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.139 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.016 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.026 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 4.241 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.098 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.061 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.048 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.129 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.028 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 36 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 08000008052009, vmgump:vmgump-public:08000008052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #49.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
&lt;br&gt;production scanning environment may not be a perfect world - but thanks to
&lt;br&gt;Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
&lt;br&gt;Series Scanner you'll get full speed at 300 dpi even with all image 
&lt;br&gt;processing features enabled. &lt;a href=&quot;http://p.sf.net/sfu/kodak-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/kodak-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23447545&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23447545p23447545.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23425892</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-07T05:31:14Z</published>
	<updated>2009-05-07T05:31:14Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23425892&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 30 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 35 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-07052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=07052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-07052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-07052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.009 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.058 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.07 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.016 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.023 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 2.572 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.077 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.055 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.093 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.116 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.03 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 34 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 09000007052009, vmgump:vmgump-public:09000007052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #44.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
&lt;br&gt;production scanning environment may not be a perfect world - but thanks to
&lt;br&gt;Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
&lt;br&gt;Series Scanner you'll get full speed at 300 dpi even with all image 
&lt;br&gt;processing features enabled. &lt;a href=&quot;http://p.sf.net/sfu/kodak-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/kodak-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23425892&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23425892p23425892.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23405880</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-06T05:40:27Z</published>
	<updated>2009-05-06T05:40:27Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23405880&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 27 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 34 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-06052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=06052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-06052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-06052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.009 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.064 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.069 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.024 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 2.735 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.09 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.043 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.055 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.055 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.114 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.053 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 33 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 07000006052009, vmgump:vmgump-public:07000006052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #44.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
&lt;br&gt;production scanning environment may not be a perfect world - but thanks to
&lt;br&gt;Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
&lt;br&gt;Series Scanner you'll get full speed at 300 dpi even with all image 
&lt;br&gt;processing features enabled. &lt;a href=&quot;http://p.sf.net/sfu/kodak-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/kodak-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23405880&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23405880p23405880.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23386480</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-05T05:23:48Z</published>
	<updated>2009-05-05T05:23:48Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23386480&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 24 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 34 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-05052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=05052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-05052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-05052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.058 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.067 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.015 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.022 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 2.022 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.144 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.054 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.062 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.113 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.036 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 33 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 06000005052009, vmgump:vmgump-public:06000005052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #55.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
&lt;br&gt;production scanning environment may not be a perfect world - but thanks to
&lt;br&gt;Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
&lt;br&gt;Series Scanner you'll get full speed at 300 dpi even with all image 
&lt;br&gt;processing features enabled. &lt;a href=&quot;http://p.sf.net/sfu/kodak-com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/kodak-com&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23386480&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23386480p23386480.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23369009</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-04T05:26:32Z</published>
	<updated>2009-05-04T05:26:32Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23369009&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 22 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 4 mins 22 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-04052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=04052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-04052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-04052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.701 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 7.654 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 5.487 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.206 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.559 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 25.379 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 5.732 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.039 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 12.111 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 5.107 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 23.518 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 4.219 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 4 minutes 22 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 15000004052009, vmgump:vmgump-public:15000004052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #43.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23369009&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23369009p23369009.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23355697</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-03T06:20:02Z</published>
	<updated>2009-05-03T06:20:02Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23355697&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 20 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 37 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-03052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=03052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-03052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-03052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.118 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.109 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.061 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.015 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.021 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 2.855 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.176 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.049 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.047 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.045 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.126 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.019 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 36 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 07000003052009, vmgump:vmgump-public:07000003052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #43.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23355697&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23355697p23355697.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23345743</id>
	<title>[GUMP@vmgump]: Project ant-contrib-test (in module ant-contrib) failed</title>
	<published>2009-05-02T05:27:53Z</published>
	<updated>2009-05-02T05:27:53Z</updated>
	<author>
		<name>general-18</name>
	</author>
	<content type="html">To whom it may engage...
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;This is an automated request, but not an unsolicited one. For 
&lt;br&gt;more information please visit &lt;a href=&quot;http://gump.apache.org/nagged.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/nagged.html&lt;/a&gt;, 
&lt;br&gt;and/or contact the folk at &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23345743&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;general@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Project ant-contrib-test has an issue affecting its community integration.
&lt;br&gt;This issue affects 1 projects,
&lt;br&gt;&amp;nbsp;and has been outstanding for 17 runs.
&lt;br&gt;The current state of this project is 'Failed', with reason 'Build Failed'.
&lt;br&gt;For reference only, the following projects are affected by this:
&lt;br&gt;&amp;nbsp; &amp;nbsp; - ant-contrib-test : &amp;nbsp;Useful little Ant tasks
&lt;br&gt;&lt;br&gt;&lt;br&gt;Full details are available at:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;That said, some information snippets are provided here.
&lt;br&gt;&lt;br&gt;The following annotations (debug/informational/warning/error messages) were provided:
&lt;br&gt;&amp;nbsp;-INFO- Made directory [/srv/gump/public/workspace/ant-contrib/target/test-classes]
&lt;br&gt;&amp;nbsp;-INFO- Failed with reason build failed
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;The following work was performed:
&lt;br&gt;&lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/gump_work/build_ant-contrib_ant-contrib-test.html&lt;/a&gt;&lt;br&gt;Work Name: build_ant-contrib_ant-contrib-test (Type: Build)
&lt;br&gt;Work ended in a state of : Failed
&lt;br&gt;Elapsed: 34 secs
&lt;br&gt;Command Line: /usr/lib/jvm/java-6-sun/bin/java -Djava.awt.headless=true -Xbootclasspath/p:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis.jar:/srv/gump/public/workspace/xml-xerces2/build/xercesImpl.jar org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml -Dbuild.sysclasspath=only -Djar.name=ant-contrib-02052009.jar -Djunit.jar.location=/srv/gump/packages/junit3.8.1/junit.jar -Dversion=02052009 -Dtestutil.jar.location=/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar -Dno-ivy=no-ivy test 
&lt;br&gt;[Working Directory: /srv/gump/public/workspace/ant-contrib]
&lt;br&gt;CLASSPATH: /usr/lib/jvm/java-6-sun/lib/tools.jar:/srv/gump/public/workspace/ant-contrib/target/test-classes:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/ant/dist/lib/ant-trax.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-nodeps.jar:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/packages/junit3.8.1/junit.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/xml-commons/java/external/build/xml-apis-ext.jar:/srv/gump/public/workspace/ant-contrib/target/ant-contrib-02052009.jar:/srv/gump/public/workspace/jakarta-bcel/target/bcel-5.3-SNAPSHOT.jar:/srv/gump/public/workspace/ivy/build/artifact/jars/ivy-02052009.jar:/srv/gump/public/workspace/ant-contrib/lib/ivy/jars/ivy-1.4.1.jar:/srv/gump/public/workspace/ant/build/lib/ant-testutil.jar
&lt;br&gt;---------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.ThrowTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.008 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TimestampSelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.07 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.logic.TryCatchTaskTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 0.067 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.math.MathTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.017 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.OsFamilyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.022 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.platform.ShellScriptTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 13, Failures: 1, Errors: 0, Time elapsed: 2.861 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testcase: testNoShell(net.sf.antcontrib.platform.ShellScriptTest):	FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] junit.framework.AssertionFailedError: Should throw BuildException because 'Execute failed' with message containing 'a shell that should not exist' (actual message 'Unable to execute command' instead)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 	at net.sf.antcontrib.platform.ShellScriptTest.testNoShell(ShellScriptTest.java:79)
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Test net.sf.antcontrib.platform.ShellScriptTest FAILED
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.process.LimitTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 2.08 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PathToFileSetTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.048 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertyCopyTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.051 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.PropertySelectorTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.044 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.property.VariableTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 9, Failures: 0, Errors: 0, Time elapsed: 0.1 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Testsuite: net.sf.antcontrib.walls.CompileWithWallsTest
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.029 sec
&lt;br&gt;&amp;nbsp; &amp;nbsp; [junit] 
&lt;br&gt;&lt;br&gt;BUILD FAILED
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:314: The following error occurred while executing this line:
&lt;br&gt;/srv/gump/public/workspace/ant-contrib/build.xml:300: JUnit failure (true) encountered.
&lt;br&gt;&lt;br&gt;Total time: 33 seconds
&lt;br&gt;---------------------------------------------
&lt;br&gt;&lt;br&gt;To subscribe to this information via syndicated feeds:
&lt;br&gt;- RSS: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/rss.xml&lt;/a&gt;&lt;br&gt;- Atom: &lt;a href=&quot;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vmgump.apache.org/gump/public/ant-contrib/ant-contrib-test/atom.xml&lt;/a&gt;&lt;br&gt;&lt;br&gt;============================== Gump Tracking Only ===
&lt;br&gt;Produced by Gump version 2.3.
&lt;br&gt;Gump Run 05000002052009, vmgump:vmgump-public:05000002052009
&lt;br&gt;Gump E-mail Identifier (unique within run) #42.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Apache Gump
&lt;br&gt;&lt;a href=&quot;http://gump.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gump.apache.org/&lt;/a&gt;&amp;nbsp;[Instance: vmgump]
&lt;br&gt;&lt;br&gt;------------------------------------------------------------------------------
&lt;br&gt;Register Now &amp; Save for Velocity, the Web Performance &amp; Operations 
&lt;br&gt;Conference from O'Reilly Media. Velocity features a full day of 
&lt;br&gt;expert-led, hands-on workshops and two days of sessions from industry 
&lt;br&gt;leaders in dedicated Performance &amp; Operations tracks. Use code vel09scf 
&lt;br&gt;and Save an extra 15% before 5/3. &lt;a href=&quot;http://p.sf.net/sfu/velocityconf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://p.sf.net/sfu/velocityconf&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Ant-contrib-developers mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=23345743&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Ant-contrib-developers@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/ant-contrib-developers&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-GUMP%40vmgump-%3A-Project-ant-contrib-test-%28in-module-ant-contrib%29-failed-tp23345743p23345743.html" />
</entry>

</feed>
