From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3385 invoked by alias); 8 Jul 2008 10:13:22 -0000 Received: (qmail 3376 invoked by uid 22791); 8 Jul 2008 10:13:22 -0000 X-Spam-Check-By: sourceware.org Received: from vegas.theobroma-systems.com (HELO mail.theobroma-systems.com) (88.198.52.168) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 08 Jul 2008 10:13:02 +0000 Received: from [86.59.122.178] (port=52816 helo=[10.0.2.106]) by mail.theobroma-systems.com with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1KGABs-0004vX-N8; Tue, 08 Jul 2008 12:12:58 +0200 Subject: Re: Am I doing something wrong? From: Christian Thalinger To: David Herron Cc: mauve-discuss@sources.redhat.com In-Reply-To: <4861947D.7070705@sun.com> References: <4861947D.7070705@sun.com> Content-Type: text/plain Date: Tue, 08 Jul 2008 10:13:00 -0000 Message-Id: <1215511976.4030.13.camel@cthalinger> Mime-Version: 1.0 X-Mailer: Evolution 2.22.1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact mauve-discuss-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-discuss-owner@sourceware.org X-SW-Source: 2008-q3/txt/msg00000.txt.bz2 On Tue, 2008-06-24 at 17:42 -0700, David Herron wrote: > Just to try out Mauve I'm running it on my OS X machine with Apple's Java. Hi David! I also want to run nightly Mauve tests with OpenJDK and I'm having some problems with the security checks, like: $ java Harness -vm java -showpasses -debug gnu/testlet/java/lang/Runtime/security.class WARNING: running tests on 'java'. To set the test VM, use --with-vm when configuring or specify -vm when running the Harness. checkPermission((java.io.FilePermission /bin/true execute)) checkPermission((java.lang.RuntimePermission writeFileDescriptor)) unexpected check: (java.lang.RuntimePermission writeFileDescriptor) expected: mustCheck: (java.io.FilePermission /bin/true execute) expected: mayCheck: (java.lang.RuntimePermission modifyThread) (java.lang.RuntimePermission modifyThreadGroup) Exception in thread "process reaper" java.lang.SecurityException: unexpected check: (java.lang.RuntimePermission writeFileDescriptor) at gnu.testlet.TestSecurityManager.checkPermission(TestSecurityManager.java:317) at java.lang.SecurityManager.checkWrite(SecurityManager.java:954) at java.io.FileOutputStream.(FileOutputStream.java:234) at java.lang.UNIXProcess$1$1$1.run(UNIXProcess.java:139) at java.security.AccessController.doPrivileged(Native Method) at java.lang.UNIXProcess$1$1.run(UNIXProcess.java:136) Do you have an idea how we could fix them? Of course I could disable them, but... - twisti