public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: cagney@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: Fix 5859.
Date: Tue, 04 Mar 2008 05:12:00 -0000	[thread overview]
Message-ID: <20080304051206.14461.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  935896fac9a7bcdfd692bf34d1dbbb55aaae5fe3 (commit)
      from  7a6afe575bcd1f6ca52d55c97c0fe77a1b248477 (commit)

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

- Log -----------------------------------------------------------------
commit 935896fac9a7bcdfd692bf34d1dbbb55aaae5fe3
Author: Andrew Cagney <cagney@redhat.com>
Date:   Tue Mar 4 00:11:30 2008 -0500

    Fix 5859.
    
    frysk-core/frysk/value/ChangeLog
    2008-03-04  Andrew Cagney  <cagney@redhat.com>
    
    	* TestComposite.java: Update to match 2008-02-19 Stan Cox
    	<scox@redhat.com> CompositeType.java change.  Fixes #5859.

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

Summary of changes:
 frysk-core/frysk/value/ChangeLog          |    5 +++++
 frysk-core/frysk/value/TestComposite.java |   10 +++++-----
 2 files changed, 10 insertions(+), 5 deletions(-)

First 500 lines of diff:
diff --git a/frysk-core/frysk/value/ChangeLog b/frysk-core/frysk/value/ChangeLog
index 52b78f9..1fe75b5 100644
--- a/frysk-core/frysk/value/ChangeLog
+++ b/frysk-core/frysk/value/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-04  Andrew Cagney  <cagney@redhat.com>
+
+	* TestComposite.java: Update to match 2008-02-19 Stan Cox
+	<scox@redhat.com> CompositeType.java change.  Fixes #5859.
+
 2008-03-03  Andrew Cagney  <cagney@redhat.com>
 
 	* TestClass.java: Use frysk.config.BuildCompiler.
diff --git a/frysk-core/frysk/value/TestComposite.java b/frysk-core/frysk/value/TestComposite.java
index ae88291..59dc86e 100644
--- a/frysk-core/frysk/value/TestComposite.java
+++ b/frysk-core/frysk/value/TestComposite.java
@@ -1,6 +1,6 @@
 // This file is part of the program FRYSK.
 //
-// Copyright 2007, Red Hat Inc.
+// Copyright 2007, 2008, Red Hat Inc.
 //
 // FRYSK is free software; you can redistribute it and/or modify it
 // under the terms of the GNU General Public License as published by
@@ -178,18 +178,18 @@ public class TestComposite
     public void testPublicPrivateType() {
 	CompositeType t = new StructType("STRUCT", 4)
 	    .addMember("pub1", scratchSourceLocation, bigInt32, 0, Access.PUBLIC)
-	    .addMember("pub2", scratchSourceLocation, bigInt32, 0, Access.PUBLIC)
 	    .addMember("priv1", scratchSourceLocation, bigInt32, 0, Access.PRIVATE)
-	    .addMember("prot1", scratchSourceLocation, bigInt32, 0, Access.PROTECTED);
+	    .addMember("prot1", scratchSourceLocation, bigInt32, 0, Access.PROTECTED)
+	    .addMember("pub2", scratchSourceLocation, bigInt32, 0, Access.PUBLIC);
 	assertEquals("toPrint",
 		     "struct STRUCT {\n"
-		     + " public:\n"
 		     + "  int32_t pub1;\n"
-		     + "  int32_t pub2;\n"
 		     + " private:\n"
 		     + "  int32_t priv1;\n"
 		     + " protected:\n"
 		     + "  int32_t prot1;\n"
+		     + " public:\n"
+		     + "  int32_t pub2;\n"
 		     + "}",
 		     t.toPrint());
     }


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


                 reply	other threads:[~2008-03-04  5:12 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=20080304051206.14461.qmail@sourceware.org \
    --to=cagney@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).