From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13098 invoked by alias); 2 Jun 2006 09:53:05 -0000 Received: (qmail 12258 invoked by uid 22791); 2 Jun 2006 09:53:03 -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; Fri, 02 Jun 2006 09:52:30 +0000 Received: from mambo.wire.rat ([192.168.1.6]) by gbenson.demon.co.uk with esmtp (Exim 3.36 #1) id 1Fm6KR-0005qG-00 for mauve-patches@sources.redhat.com; Fri, 02 Jun 2006 10:52:27 +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 k529qRiA004858 for ; Fri, 2 Jun 2006 10:52:27 +0100 Received: (from gary@localhost) by mambo.wire.rat (8.13.6/8.13.6/Submit) id k529qQrm004857 for mauve-patches@sources.redhat.com; Fri, 2 Jun 2006 10:52:26 +0100 Date: Fri, 02 Jun 2006 09:53:00 -0000 From: Gary Benson To: mauve-patches@sources.redhat.com Subject: FYI: Comment fixes Message-ID: <20060602095225.GC3558@redhat.com> Mail-Followup-To: mauve-patches@sources.redhat.com Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="17pEHd4RhPHOinZp" 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/msg00362.txt.bz2 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 152 Hi all, My last commit fixed some broken throwpoint comments that were breaking http://people.redhat.com/gbenson/throwpoint-report.html. Cheers, Gary --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch Content-length: 2849 Index: ChangeLog =================================================================== RCS file: /cvs/mauve/mauve/ChangeLog,v retrieving revision 1.1652 diff -u -r1.1652 ChangeLog --- ChangeLog 1 Jun 2006 16:56:29 -0000 1.1652 +++ ChangeLog 2 Jun 2006 09:26:31 -0000 @@ -1,3 +1,8 @@ +2006-06-02 Gary Benson + + * gnu/testlet/java/awt/Robot/security.java: Comment fixes. + * gnu/testlet/java/awt/Window/security.java: Likewise. + 2006-06-01 Robert Schuster * gnu/testlet/javax/xml/parsers/DocumentBuilder/PR27864.java: New test. Index: gnu/testlet/java/awt/Robot/security.java =================================================================== RCS file: /cvs/mauve/mauve/gnu/testlet/java/awt/Robot/security.java,v retrieving revision 1.1 diff -u -r1.1 security.java --- gnu/testlet/java/awt/Robot/security.java 23 May 2006 09:41:46 -0000 1.1 +++ gnu/testlet/java/awt/Robot/security.java 2 Jun 2006 09:26:31 -0000 @@ -56,7 +56,7 @@ try { sm.install(); - // throwpoint: java.awt.Robot() + // throwpoint: java.awt.Robot-Robot() harness.checkPoint("0-arg constructor"); try { sm.prepareChecks(createRobot, readProperty); @@ -68,7 +68,7 @@ harness.check(false, "unexpected check"); } - // throwpoint: java.awt.Robot(GraphicsDevice) + // throwpoint: java.awt.Robot-Robot(GraphicsDevice) harness.checkPoint("1-arg constructor"); try { sm.prepareChecks(createRobot, readProperty); Index: gnu/testlet/java/awt/Window/security.java =================================================================== RCS file: /cvs/mauve/mauve/gnu/testlet/java/awt/Window/security.java,v retrieving revision 1.1 diff -u -r1.1 security.java --- gnu/testlet/java/awt/Window/security.java 23 May 2006 10:41:23 -0000 1.1 +++ gnu/testlet/java/awt/Window/security.java 2 Jun 2006 09:26:31 -0000 @@ -39,7 +39,6 @@ { try { Toolkit.getDefaultToolkit(); - //Math.log(1); Frame frame = new Frame(); Window window = new Window(frame); @@ -52,7 +51,7 @@ try { sm.install(); - // throwpoint: java.awt.Window(Frame) + // throwpoint: java.awt.Window-Window(Frame) harness.checkPoint("Window(Frame)"); try { sm.prepareChecks(showWindowWithoutWarningBanner); @@ -64,7 +63,7 @@ harness.check(false, "unexpected check"); } - // throwpoint: java.awt.Window(Window) + // throwpoint: java.awt.Window-Window(Window) harness.checkPoint("Window(Window)"); try { sm.prepareChecks(showWindowWithoutWarningBanner); @@ -76,7 +75,7 @@ harness.check(false, "unexpected check"); } - // throwpoint: java.awt.Window(Window, GraphicsConfiguration) + // throwpoint: java.awt.Window-Window(Window, GraphicsConfiguration) harness.checkPoint("Window(Window, GraphicsConfiguration)"); try { sm.prepareChecks(showWindowWithoutWarningBanner); --17pEHd4RhPHOinZp--