Return-Path: Delivered-To: apmail-ant-user-archive@www.apache.org Received: (qmail 8396 invoked from network); 10 Sep 2010 04:07:23 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 10 Sep 2010 04:07:23 -0000 Received: (qmail 54983 invoked by uid 500); 10 Sep 2010 04:07:23 -0000 Delivered-To: apmail-ant-user-archive@ant.apache.org Received: (qmail 54646 invoked by uid 500); 10 Sep 2010 04:07:20 -0000 Mailing-List: contact user-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Ant Users List" Reply-To: "Ant Users List" Delivered-To: mailing list user@ant.apache.org Received: (qmail 54622 invoked by uid 99); 10 Sep 2010 04:07:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Sep 2010 04:07:18 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [88.84.128.168] (HELO samaflost.de) (88.84.128.168) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Sep 2010 04:07:10 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by samaflost.de (Postfix) with ESMTP id B81AF28985D1 for ; Fri, 10 Sep 2010 06:06:48 +0200 (CEST) Received: from samaflost.de ([127.0.0.1]) by localhost (v35516.1blu.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8OlYQxiSrrPT for ; Fri, 10 Sep 2010 06:06:47 +0200 (CEST) Received: by samaflost.de (Postfix, from userid 1000) id 6C3A628985D2; Fri, 10 Sep 2010 06:06:47 +0200 (CEST) From: Stefan Bodewig To: user@ant.apache.org Subject: Re: forked jvm exited abnormally References: <87vd6gq3av.fsf@v35516.1blu.de> X-Draft-From: ("nnfolder:mail.jakarta-ant-user" 68410) Date: Fri, 10 Sep 2010 06:06:47 +0200 In-Reply-To: (Larry Xu's message of "Tue, 7 Sep 2010 21:57:25 -0700") Message-ID: <87occ644yw.fsf@v35516.1blu.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On 2010-09-08, Xu, Larry wrote: > JUnit output: > Testsuite: com.ebay.ice.kernel.unittest.AllTests > Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec > Testcase: null took 0 sec > Caused an ERROR > Forked Java VM exited abnormally. Please note the time in the report does not reflect the time until the VM exit. > junit.framework.AssertionFailedError: Forked Java VM exited abnormally. Please note the time in the report does not reflect the time until the VM exit. OK, this means the VM crashed somewhere inside the AllTests suite (which likely is pretty big). > Is there any way to get more detail log? Not that easily. When you fork a test Ant buffers all information inside the forked VM and only emits it at the end - the loggers write their information as part of the suiteFinished event and not earlier. You can set showOutput to true to make sure anything that goes to System.out/err is visible inside Ant's log, maybe there is something useful. If that doesn't help the best idea I can come up with is splitting the test suite into smaller ones and/or inserting printlns until I know which test causes the problem. Stefan --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscribe@ant.apache.org For additional commands, e-mail: user-help@ant.apache.org