public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: rmoseley@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: 	* LoadCommand.java:  Add target set to output line.
Date: Fri, 14 Mar 2008 20:58:00 -0000	[thread overview]
Message-ID: <20080314205848.32745.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  710ede96339be6993d5d94043672258e1a5b24eb (commit)
      from  22d29b98514df505cd9677caf63d9629499a3590 (commit)

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

- Log -----------------------------------------------------------------
commit 710ede96339be6993d5d94043672258e1a5b24eb
Author: Rick Moseley <rmoseley@localhost.localdomain>
Date:   Fri Mar 14 15:58:18 2008 -0500

    	* LoadCommand.java:  Add target set to output line.
            * TestLoadCommand.java: Add test for above.
            * TestRunCommand.java: Ditto.
            * TestStartCommand.java: Ditto.

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

Summary of changes:
 frysk-core/frysk/hpd/ChangeLog             |    7 +++++++
 frysk-core/frysk/hpd/LoadCommand.java      |    3 ++-
 frysk-core/frysk/hpd/TestLoadCommand.java  |   14 +++++++-------
 frysk-core/frysk/hpd/TestRunCommand.java   |   14 +++++++-------
 frysk-core/frysk/hpd/TestStartCommand.java |    4 ++--
 5 files changed, 25 insertions(+), 17 deletions(-)

First 500 lines of diff:
diff --git a/frysk-core/frysk/hpd/ChangeLog b/frysk-core/frysk/hpd/ChangeLog
index 0f1caa9..3e5d541 100644
--- a/frysk-core/frysk/hpd/ChangeLog
+++ b/frysk-core/frysk/hpd/ChangeLog
@@ -1,3 +1,10 @@
+2008-03-14  Rick Moseley  <rmoseley@redhat.com>
+
+	* LoadCommand.java:  Add target set to output line.
+	* TestLoadCommand.java: Add test for above.
+	* TestRunCommand.java: Ditto.
+	* TestStartCommand.java: Ditto.
+
 2008-03-14  Andrew Cagney  <cagney@redhat.com>
 
 	* UnloadCommand.java: Do not call Host.remove(Proc).
diff --git a/frysk-core/frysk/hpd/LoadCommand.java b/frysk-core/frysk/hpd/LoadCommand.java
index 0cb3998..f3b2217 100644
--- a/frysk-core/frysk/hpd/LoadCommand.java
+++ b/frysk-core/frysk/hpd/LoadCommand.java
@@ -145,7 +145,8 @@ public class LoadCommand extends ParameterizedCommand {
 	    cli.getLoadedProcs().put(exeProc, new Integer(procID));
 	}
 
-	cli.addMessage("Loaded executable file: " + exeProc.getExe(), Message.TYPE_NORMAL);
+	cli.addMessage("[" + procID + ".0] Loaded executable file: " + 
+		exeProc.getExe(), Message.TYPE_NORMAL);
     }
     
     int completer(CLI cli, Input input, int cursor, List completions) {
diff --git a/frysk-core/frysk/hpd/TestLoadCommand.java b/frysk-core/frysk/hpd/TestLoadCommand.java
index 2903c4b..81fab20 100644
--- a/frysk-core/frysk/hpd/TestLoadCommand.java
+++ b/frysk-core/frysk/hpd/TestLoadCommand.java
@@ -51,7 +51,7 @@ public class TestLoadCommand extends TestLib {
 	e = new HpdTestbed();
 	e.send("load " + Config.getPkgDataFile("test-exe-x86").getPath()
 		+ "\n");
-	e.expect("Loaded executable file.*");
+	e.expect("\\[0\\.0\\] Loaded executable file.*");
 	e.send("quit\n");
 	e.expect("Quitting\\.\\.\\.");
 	e.close();
@@ -67,10 +67,10 @@ public class TestLoadCommand extends TestLib {
     public void testLoadStart() {
 	e = new HpdTestbed();
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-hello").getPath(),
-		"Loaded executable file.*");
+		"\\[0\\.0\\] Loaded executable file.*");
 	e.sendCommandExpectPrompt("focus", "Target set.*\\[0\\.0\\]\t\t0\t0.*");
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-hello").getPath(),
-		"Loaded executable file.*");
+		"\\[1\\.0] Loaded executable file.*");
 	e.sendCommandExpectPrompt("focus", "Target set.*\\[0\\.0\\]\t\t0\t0.*"+
 		"\\[1\\.0\\]\t\t0*\\t0.*");
 	e.sendCommandExpectPrompt("start", "Attached to process.*Attached to process.*");
@@ -83,9 +83,9 @@ public class TestLoadCommand extends TestLib {
     public void testLoadRunRun() {
 	e = new HpdTestbed();
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-threads-looper").getPath(),
-		"Loaded executable file.*");
+		"\\[0\\.0\\] Loaded executable file.*");
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-threads-looper").getPath(),
-		"Loaded executable file.*");
+		"\\[1\\.0\\] Loaded executable file.*");
 	e.sendCommandExpectPrompt("start", "Attached to process.*Attached to process.*");
 	e.send("quit\n");
 	e.expect("Quitting\\.\\.\\.");
@@ -103,9 +103,9 @@ public class TestLoadCommand extends TestLib {
     public void testLoadDisplay() {
 	e = new HpdTestbed();
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-threads-looper").getPath(),
-		"Loaded executable file.*");
+		"\\[0\\.0\\] Loaded executable file.*");
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-hello").getPath(),
-		"Loaded executable file.*");
+		"\\[1\\.0\\] Loaded executable file.*");
 	e.sendCommandExpectPrompt("load", "Target set.*\\[0\\.0\\].*\\[1\\.0\\].*");
 	e.send("quit\n");
 	e.expect("Quitting\\.\\.\\.");
diff --git a/frysk-core/frysk/hpd/TestRunCommand.java b/frysk-core/frysk/hpd/TestRunCommand.java
index 90439ca..a8ab9c8 100644
--- a/frysk-core/frysk/hpd/TestRunCommand.java
+++ b/frysk-core/frysk/hpd/TestRunCommand.java
@@ -53,7 +53,7 @@ public class TestRunCommand extends TestLib {
     public void testRunCommand() {
 	e = new HpdTestbed();
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-threads-looper").getPath(),
-	"Loaded executable file.*");
+	"\\[0\\.0\\] Loaded executable file.*");
 	e.sendCommandExpectPrompt("run ",
 		"Attached to process ([0-9]+).*Running process ([0-9]+).*");
 	try { Thread.sleep(1000); } catch (Exception e) {}
@@ -73,7 +73,7 @@ public class TestRunCommand extends TestLib {
 	    return;
 	e = new HpdTestbed();
 	e.send("load " + Config.getPkgLibFile("funit-threads-looper").getPath() + "\n");
-	e.expect("Loaded executable file.*" + prompt);
+	e.expect("\\[0\\.0\\] Loaded executable file.*" + prompt);
 	e.send("run\n");
 	e.expect("Attached to process ([0-9]+).*");
 	e.expect("Running process ([0-9]+).*" + prompt);
@@ -91,7 +91,7 @@ public class TestRunCommand extends TestLib {
 	//try { Thread.sleep(1000); } catch (Exception e) {}
 	e.send("run\n");
 	e.expect(".*Killing process ([0-9])+.*");
-	e.expect("Loaded executable file.*");
+	e.expect("\\[0\\.0\\] Loaded executable file.*");
 	e.expect("Attached to process ([0-9])+.*");
 	e.expect("Running process ([0-9])+.*");
 	//e.sendCommandExpectPrompt("run", "Killing process ([0-9])+.*" +
@@ -106,7 +106,7 @@ public class TestRunCommand extends TestLib {
 	e = new HpdTestbed();
 	String[] param = { "-testing", "parameter2", "-g"};
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-parameters").getPath(),
-	"Loaded executable file.*");
+	"\\[0\\.0\\] Loaded executable file.*");
 	String parameters = "";
 	for (int i = 0; i < param.length; i++) {
 	    parameters = parameters + param[i] + " ";
@@ -157,9 +157,9 @@ public class TestRunCommand extends TestLib {
 	    return;
 	e = new HpdTestbed();
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-hello").getPath(),
-	"Loaded executable file.*");
+	"\\[0\\.0\\] Loaded executable file.*");
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-threads-looper").getPath(),
-	"Loaded executable file.*");
+	"\\[1\\.0\\] Loaded executable file.*");
 	e.sendCommandExpectPrompt("focus", "Target set.*\\[0\\.0\\]\t\t0\t0.*"+
 	"\\[1\\.0\\]\t\t0*\\t0.*");
 	e.sendCommandExpectPrompt("run", "Attached to process ([0-9]+).*Attached to process ([0-9]+).*" +
@@ -169,7 +169,7 @@ public class TestRunCommand extends TestLib {
 	//	"Running process ([0-9]+).*");
 	e.send("run\n");
 	e.expect("Killing process ([0-9]+).*");
-	e.expect("Loaded executable file.*");
+	e.expect("\\[1\\.0\\] Loaded executable file.*");
 	e.expect("Attached to process ([0-9]+).*");
 	e.expect("Running process ([0-9]+).*");
 	e.sendCommandExpectPrompt("focus", "Target set.*\\[1\\.0\\]\t\t([0-9]+)\t([0-9]+).*" +
diff --git a/frysk-core/frysk/hpd/TestStartCommand.java b/frysk-core/frysk/hpd/TestStartCommand.java
index 9f66c46..c81650f 100644
--- a/frysk-core/frysk/hpd/TestStartCommand.java
+++ b/frysk-core/frysk/hpd/TestStartCommand.java
@@ -53,7 +53,7 @@ public class TestStartCommand extends TestLib {
     public void testStartCommand() {
 	e = new HpdTestbed();
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-threads-looper").getPath(),
-		"Loaded executable file.*");
+		"\\[0\\.0] Loaded executable file.*");
 	e.sendCommandExpectPrompt("start", "Attached to process.*");
 	e.sendCommandExpectPrompt("where", "[0.0].*");
 	e.send("quit\n");
@@ -71,7 +71,7 @@ public class TestStartCommand extends TestLib {
 	e = new HpdTestbed();
 	String[] param = { "teststart", "parameter2start", "-g"};
 	e.sendCommandExpectPrompt("load " + Config.getPkgLibFile("funit-parameters").getPath(),
-	"Loaded executable file.*");
+	"\\[0\\.0\\] Loaded executable file.*");
 	String parameters = "";
 	for (int i = 0; i < param.length; i++) {
 	    parameters = parameters + param[i] + " ";


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


                 reply	other threads:[~2008-03-14 20:58 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=20080314205848.32745.qmail@sourceware.org \
    --to=rmoseley@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).