From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8815 invoked by alias); 27 Jun 2006 10:01:57 -0000 Received: (qmail 8723 invoked by uid 22791); 27 Jun 2006 10:01:57 -0000 X-Spam-Check-By: sourceware.org Received: from gbenson.demon.co.uk (HELO gbenson.demon.co.uk) (80.177.220.214) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 27 Jun 2006 10:01:55 +0000 Received: from mambo.wire.rat ([192.168.1.6]) by gbenson.demon.co.uk with esmtp (Exim 3.36 #1) id 1FvAOH-0002SC-00; Tue, 27 Jun 2006 11:01:53 +0100 Received: from mambo.wire.rat (localhost.localdomain [127.0.0.1]) by mambo.wire.rat (8.13.6/8.13.6) with ESMTP id k5RA1qFf005400; Tue, 27 Jun 2006 11:01:52 +0100 Received: (from gary@localhost) by mambo.wire.rat (8.13.6/8.13.6/Submit) id k5RA1qsq005399; Tue, 27 Jun 2006 11:01:52 +0100 Date: Tue, 27 Jun 2006 10:01:00 -0000 From: Gary Benson To: mauve-patches@sources.redhat.com Subject: FYI: Minor fix for Thread insecurity checks Message-ID: <20060627100151.GB3645@redhat.com> Mail-Followup-To: mauve-patches@sources.redhat.com Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="DKU6Jbt7q3WqK7+M" Content-Disposition: inline X-IsSubscribed: yes Mailing-List: contact mauve-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-patches-owner@sourceware.org X-SW-Source: 2006/txt/msg00480.txt.bz2 --DKU6Jbt7q3WqK7+M Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 267 Hi again, This commit fixes a failure in the Thread insecurity checks. I have no idea how this passed before. There's something about Thread checks that turns my brain to cheese. Probably someone at Sun watches me commit then changes the javadoc... Cheers, Gary --DKU6Jbt7q3WqK7+M Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch Content-length: 1144 Index: ChangeLog =================================================================== RCS file: /cvs/mauve/mauve/ChangeLog,v retrieving revision 1.1740 diff -u -r1.1740 ChangeLog --- ChangeLog 27 Jun 2006 09:54:43 -0000 1.1740 +++ ChangeLog 27 Jun 2006 09:58:14 -0000 @@ -1,3 +1,7 @@ +2006-06-27 Gary Benson + + * gnu/testlet/java/lang/Thread/insecurity.java: Minor fix. + 2006-06-27 Gary Benson * gnu/testlet/java/lang/ThreadGroup/insecurity.java: Index: gnu/testlet/java/lang/Thread/insecurity.java =================================================================== RCS file: /cvs/mauve/mauve/gnu/testlet/java/lang/Thread/insecurity.java,v retrieving revision 1.1 diff -u -r1.1 insecurity.java --- gnu/testlet/java/lang/Thread/insecurity.java 10 May 2006 11:36:45 -0000 1.1 +++ gnu/testlet/java/lang/Thread/insecurity.java 27 Jun 2006 09:58:14 -0000 @@ -162,7 +162,7 @@ // corresponding throwpoint: java.lang.Thread-stop() harness.checkPoint("stop()"); try { - sm.prepareChecks(noChecks); + sm.prepareChecks(stopThread); testThread.stop(); sm.checkAllChecked(harness); } --DKU6Jbt7q3WqK7+M--