public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: swagiaal@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: swagiaal: Added second test for [file#]symbol
Date: Wed, 14 May 2008 19:03:00 -0000	[thread overview]
Message-ID: <20080514190349.25905.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  be931329a57113f8d9668e47a7019b8c45b87cfd (commit)
      from  2d60aa465d46c1841d083231afb09512b314990c (commit)

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

- Log -----------------------------------------------------------------
commit be931329a57113f8d9668e47a7019b8c45b87cfd
Author: Sami Wagiaalla <swagiaal@redhat.com>
Date:   Wed May 14 14:48:27 2008 -0400

    swagiaal: Added second test for [file#]symbol
    
    frysk-core/frysk/debuginfo/ChangeLog
    +2008-05-14  Sami Wagiaalla  <swagiaal@redhat.com>
    +
    +	* TestObjectDeclarationSearchEngineTopDown.java
    +	(testGetObjectHashFileHashSymbolOther): New Test.
    +
    
    frysk-core/frysk/pkglibdir/ChangeLog
    +2008-05-14  Sami Wagiaalla  <swagiaal@toner.yyz.redhat.com>
    +
    +	* funit-scopes-multi-file-a.c: Moved function first().
    +

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

Summary of changes:
 frysk-core/frysk/debuginfo/ChangeLog               |    5 +++++
 .../TestObjectDeclarationSearchEngineTopDown.java  |   10 ++++++++++
 frysk-core/frysk/pkglibdir/ChangeLog               |    4 ++++
 .../frysk/pkglibdir/funit-scopes-multi-file-a.c    |   15 +++++++--------
 4 files changed, 26 insertions(+), 8 deletions(-)

First 500 lines of diff:
diff --git a/frysk-core/frysk/debuginfo/ChangeLog b/frysk-core/frysk/debuginfo/ChangeLog
index f444ac0..424c906 100644
--- a/frysk-core/frysk/debuginfo/ChangeLog
+++ b/frysk-core/frysk/debuginfo/ChangeLog
@@ -1,3 +1,8 @@
+2008-05-14  Sami Wagiaalla  <swagiaal@redhat.com>
+
+	* TestObjectDeclarationSearchEngineTopDown.java
+	(testGetObjectHashFileHashSymbolOther): New Test.
+
 2008-05-09  Sami Wagiaalla  <swagiaal@redhat.com>
 
 	* ObjectDeclarationSearchEngine.java (getObject): Added support
diff --git a/frysk-core/frysk/debuginfo/TestObjectDeclarationSearchEngineTopDown.java b/frysk-core/frysk/debuginfo/TestObjectDeclarationSearchEngineTopDown.java
index 8764737..2c50104 100644
--- a/frysk-core/frysk/debuginfo/TestObjectDeclarationSearchEngineTopDown.java
+++ b/frysk-core/frysk/debuginfo/TestObjectDeclarationSearchEngineTopDown.java
@@ -81,6 +81,16 @@ public class TestObjectDeclarationSearchEngineTopDown extends TestLib {
 	verifyObjectFound(objectName, objectToken, fileName, srcPath);
     }
     
+    public void testGetObjectHashFileHashSymbolOther() {
+	
+	String objectName = "funit-scopes-multi-file-a.c#first";
+	String objectToken = "*other*";
+	String fileName = "funit-scopes-multi-file";
+	File srcPath = getSrc("funit-scopes-multi-file-a.c");
+
+	verifyObjectFound(objectName, objectToken, fileName, srcPath);
+    }
+    
     
     private void verifyObjectFound(String objectName, String objectToken,
 	    String fileName, File srcPath) {
diff --git a/frysk-core/frysk/pkglibdir/ChangeLog b/frysk-core/frysk/pkglibdir/ChangeLog
index 9fbf847..efeb6d5 100644
--- a/frysk-core/frysk/pkglibdir/ChangeLog
+++ b/frysk-core/frysk/pkglibdir/ChangeLog
@@ -1,3 +1,7 @@
+2008-05-14  Sami Wagiaalla  <swagiaal@toner.yyz.redhat.com>
+
+	* funit-scopes-multi-file-a.c: Moved function first().
+
 2008-05-06  Thiago Jung Bauermann  <bauerman@br.ibm.com>
 
 	* funit-regs.S: Use LOAD_REGISTER_IMMED instead of LOAD_IMMED_WORD.
diff --git a/frysk-core/frysk/pkglibdir/funit-scopes-multi-file-a.c b/frysk-core/frysk/pkglibdir/funit-scopes-multi-file-a.c
index dd471ee..f0c6283 100644
--- a/frysk-core/frysk/pkglibdir/funit-scopes-multi-file-a.c
+++ b/frysk-core/frysk/pkglibdir/funit-scopes-multi-file-a.c
@@ -1,17 +1,16 @@
 #include <stdlib.h>
 
-static inline void second(){
-  int* a = 0;
-  a[0] = 0;
-}
-
-
+void second();
 
-
-static void first(){
+void first(){ //*other*
   second();
 }
 
+void second(){
+  int* a = 0;
+  a[0] = 0;
+}
+
 int main(){
   first();
   return 0;


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


                 reply	other threads:[~2008-05-14 19:03 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=20080514190349.25905.qmail@sourceware.org \
    --to=swagiaal@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).