From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30565 invoked by alias); 14 Apr 2008 12:00:44 -0000 Received: (qmail 30547 invoked by uid 22791); 14 Apr 2008 12:00:39 -0000 X-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 14 Apr 2008 12:00:18 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m3EC0G1g017385; Mon, 14 Apr 2008 08:00:16 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [10.11.255.20]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m3EC0EJm027355; Mon, 14 Apr 2008 08:00:14 -0400 Received: from localhost.localdomain (sebastian-int.corp.redhat.com [172.16.52.221]) by pobox.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m3EC0CUo012981; Mon, 14 Apr 2008 08:00:13 -0400 Message-ID: <48034730.2080208@redhat.com> Date: Mon, 14 Apr 2008 13:26:00 -0000 From: Andrew Cagney User-Agent: Thunderbird 2.0.0.12 (X11/20080226) MIME-Version: 1.0 To: Mark Wielaard CC: frysk Subject: Re: got JNI; but only just :-) References: <47FFD8E7.5060803@redhat.com> <1208033592.3608.9.camel@localhost.localdomain> In-Reply-To: <1208033592.3608.9.camel@localhost.localdomain> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 X-IsSubscribed: yes Mailing-List: contact frysk-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-owner@sourceware.org X-SW-Source: 2008-q2/txt/msg00051.txt.bz2 This is fixed. Mark Wielaard wrote: > On Fri, 2008-04-11 at 17:32 -0400, Andrew Cagney wrote: > >> I've just pushed changes to frysk's build system that add the ability to >> build JNI code vis: >> >> - automatically generate required jni headers >> - compile */jni/*.cxx files into a separate shared object >> >> while at the same time continuing to build the existing CNI code. By >> being able to build/run both side-by-side we'll hopefully help to ease >> the migration pain. >> > > Nice, but something broke all the TestTypeFactory tests: > > Running test_char_var(frysk.debuginfo.TestTypeFactory) ...execve: No such file > or directory > FAIL > junit.framework.AssertionFailedError: event loop run explictly stopped (run to > blocked exec) > > I tried to git bi-sect to see which commit actually broke it, but not > all the commits actually compile :{ So for now I filed a bug report > #6396 and marked the tests unresolved. Could you take a look what causes > the funit-type-class not to be compiled/found? > > Thanks, > > Mark > > frysk-core/frysk/debuginfo/ChangeLog > 2008-04-12 Mark Wielaard > > * gen-type-expect-tests.py: Mark unresolved #6396. > > > index 0a36801..7a82702 100644 > --- a/frysk-core/frysk/debuginfo/gen-type-expect-tests.py > +++ b/frysk-core/frysk/debuginfo/gen-type-expect-tests.py > @@ -135,6 +135,7 @@ public class %s extends TestLib { > > def start_test(self, executable, name): > print(" public void test_%s () {" % (name)) > + print(" if (unresolved(6396)) return;"); > tokens = os.path.splitext(os.path.abspath(executable)) > print(' TypeTestbed typeTestbed = new TypeTestbed("%s", "test%s" > > > >