public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
* [SCM]  master: Make TestDebugInfoStackTrace.frameAssertions() more robust.
@ 2008-03-19 14:53 mark
  0 siblings, 0 replies; only message in thread
From: mark @ 2008-03-19 14:53 UTC (permalink / raw)
  To: frysk-cvs

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


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-03-19 14:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-19 14:53 [SCM] master: Make TestDebugInfoStackTrace.frameAssertions() more robust mark

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).