public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: mark@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: Make TestDebugInfoStackTrace.frameAssertions() more robust.
Date: Wed, 19 Mar 2008 14:53:00 -0000	[thread overview]
Message-ID: <20080319145300.20173.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  7b4037bbe4ba584336bbd3bc3dd1e80a79b4b55c (commit)
      from  35c076f3436b95a116cba33f52e0c9a592607dfa (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 7b4037bbe4ba584336bbd3bc3dd1e80a79b4b55c
Author: Mark Wielaard <mwielaard@redhat.com>
Date:   Wed Mar 19 15:52:27 2008 +0100

    Make TestDebugInfoStackTrace.frameAssertions() more robust.
    
    frysk-core/frysk/debuginfo/ChangeLog
    2008-03-19  Mark Wielaard  <mwielaard@redhat.com>
    
        * TestDebugInfoStackTrace (frameAssertions): Also check for function
        names starting with kill or syscall.

-----------------------------------------------------------------------

Summary of changes:
 frysk-core/frysk/debuginfo/ChangeLog               |    5 +++++
 .../frysk/debuginfo/TestDebugInfoStackTrace.java   |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

First 500 lines of diff:
diff --git a/frysk-core/frysk/debuginfo/ChangeLog b/frysk-core/frysk/debuginfo/ChangeLog
index 0ab6bef..4c1bf54 100644
--- a/frysk-core/frysk/debuginfo/ChangeLog
+++ b/frysk-core/frysk/debuginfo/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-19  Mark Wielaard  <mwielaard@redhat.com>
+
+	* TestDebugInfoStackTrace (frameAssertions): Also check for function
+	names starting with kill or syscall.
+
 2008-03-15  Andrew Cagney  <cagney@redhat.com>
 
 	* TypeFactory.java: Rename TypeEntry.java.
diff --git a/frysk-core/frysk/debuginfo/TestDebugInfoStackTrace.java b/frysk-core/frysk/debuginfo/TestDebugInfoStackTrace.java
index 1939bb9..e932858 100644
--- a/frysk-core/frysk/debuginfo/TestDebugInfoStackTrace.java
+++ b/frysk-core/frysk/debuginfo/TestDebugInfoStackTrace.java
@@ -407,8 +407,8 @@ public class TestDebugInfoStackTrace
 	String frameName =  this.frameTracker[i][index][2];
 	
 	while (frameName == null
-	       || frameName.indexOf("kill") > 0
-	       || frameName.indexOf("syscall") > 0)
+	       || frameName.indexOf("kill") >= 0
+	       || frameName.indexOf("syscall") >= 0)
 	  {
 	    index++;
 	    frameName = this.frameTracker[i][index][2];


hooks/post-receive
--
frysk system monitor/debugger


                 reply	other threads:[~2008-03-19 14:53 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080319145300.20173.qmail@sourceware.org \
    --to=mark@sourceware.org \
    --cc=frysk-cvs@sourceware.org \
    --cc=frysk@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).