From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22054 invoked by alias); 15 Apr 2008 16:01:27 -0000 Received: (qmail 22002 invoked by uid 9514); 15 Apr 2008 16:01:24 -0000 Date: Tue, 15 Apr 2008 16:01:00 -0000 Message-ID: <20080415160124.21987.qmail@sourceware.org> From: pmuldoon@sourceware.org To: frysk-cvs@sourceware.org Subject: [SCM] master: Untangle read_only and source variables. X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: f456c6b56d21b6d9b2f6921103ee6b0515b2cd15 X-Git-Newrev: 31ece4d92880db8625f44f94f09688bb2704e449 Mailing-List: contact frysk-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-cvs-owner@sourceware.org Reply-To: frysk@sourceware.org X-SW-Source: 2008-q2/txt/msg00102.txt.bz2 The branch, master has been updated via 31ece4d92880db8625f44f94f09688bb2704e449 (commit) from f456c6b56d21b6d9b2f6921103ee6b0515b2cd15 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- commit 31ece4d92880db8625f44f94f09688bb2704e449 Author: Phil Muldoon Date: Tue Apr 15 17:00:07 2008 +0100 Untangle read_only and source variables. 2008-04-15 Phil Muldoon * TestTaskObserverWatchpoint.java (testWatchpointActionContinue): Reset expected hit count to 1. 2008-04-15 Phil Muldoon * funit-watchpoint.S: Don't add read_only to source. ----------------------------------------------------------------------- Summary of changes: frysk-core/frysk/pkglibdir/ChangeLog | 5 +++++ frysk-core/frysk/pkglibdir/funit-watchpoint.S | 5 ++--- frysk-core/frysk/proc/ChangeLog | 5 +++++ .../frysk/proc/TestTaskObserverWatchpoint.java | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) First 500 lines of diff: diff --git a/frysk-core/frysk/pkglibdir/ChangeLog b/frysk-core/frysk/pkglibdir/ChangeLog index d0090ce..c01e980 100644 --- a/frysk-core/frysk/pkglibdir/ChangeLog +++ b/frysk-core/frysk/pkglibdir/ChangeLog @@ -1,3 +1,8 @@ +2008-04-15 Phil Muldoon + + * funit-watchpoint.S: Don't add read_only to + source. + 2008-04-14 Phil Muldoon * funit-watchpoint.S: Add new read_only WORD diff --git a/frysk-core/frysk/pkglibdir/funit-watchpoint.S b/frysk-core/frysk/pkglibdir/funit-watchpoint.S index cfb0f39..a8b39ee 100644 --- a/frysk-core/frysk/pkglibdir/funit-watchpoint.S +++ b/frysk-core/frysk/pkglibdir/funit-watchpoint.S @@ -64,10 +64,9 @@ NOP STORE_WORD(REG3, REG1) NOP -NOP -// Read read_only memory, and copy it to source +// Read read_only memory. LOAD_IMMED_WORD(REG3, read_only) -STORE_WORD(REG3, REG1) +LOAD_WORD(REG3, REG3) NOP diff --git a/frysk-core/frysk/proc/ChangeLog b/frysk-core/frysk/proc/ChangeLog index a671460..ce16160 100644 --- a/frysk-core/frysk/proc/ChangeLog +++ b/frysk-core/frysk/proc/ChangeLog @@ -1,3 +1,8 @@ +2008-04-15 Phil Muldoon + + * TestTaskObserverWatchpoint.java (testWatchpointActionContinue): Reset + expected hit count to 1. + 2008-04-14 Phil Muldoon * TestTaskObserverWatchpoint.java (testRunningAndReadOnlyWatchpoint): New. diff --git a/frysk-core/frysk/proc/TestTaskObserverWatchpoint.java b/frysk-core/frysk/proc/TestTaskObserverWatchpoint.java index 6650fe3..2fde8c2 100644 --- a/frysk-core/frysk/proc/TestTaskObserverWatchpoint.java +++ b/frysk-core/frysk/proc/TestTaskObserverWatchpoint.java @@ -346,7 +346,7 @@ extends TestLib // Make sure it triggered. assertTrue("added", watch.added); - assertEquals("hit code", 2, watch.hit); + assertEquals("hit code", 1, watch.hit); assertEquals("Task terminated", 1, to.hit); } hooks/post-receive -- frysk system monitor/debugger