public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
* [SCM]  master: Fix pattern matches.
@ 2008-01-25 19:18 rmoseley
  0 siblings, 0 replies; only message in thread
From: rmoseley @ 2008-01-25 19:18 UTC (permalink / raw)
  To: frysk-cvs

The branch, master has been updated
       via  fc285e51bf9780171d01de5ad90b344480e2667a (commit)
      from  e0ae00fafe3d0b780d7f0aa82e2ff64246921cb4 (commit)

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

- Log -----------------------------------------------------------------
commit fc285e51bf9780171d01de5ad90b344480e2667a
Author: Rick Moseley <rmoseley@localhost.localdomain>
Date:   Fri Jan 25 13:18:49 2008 -0600

    Fix pattern matches.
    
    * TestHpdTestHarness.java: Fix pattern matches.

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

Summary of changes:
 frysk-core/frysk/hpd/ChangeLog               |    5 +++++
 frysk-core/frysk/hpd/TestHpdTestHarness.java |   18 +++++++++---------
 2 files changed, 14 insertions(+), 9 deletions(-)

First 500 lines of diff:
diff --git a/frysk-core/frysk/hpd/ChangeLog b/frysk-core/frysk/hpd/ChangeLog
index 8d16747..9f9bbc9 100644
--- a/frysk-core/frysk/hpd/ChangeLog
+++ b/frysk-core/frysk/hpd/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-25  Rick Moseley  <rmoseley@redhat.com>
+
+	* TestHpdTestHarness.java: Fix pattern matches.
+
+
 2008-01-25  Andrew Cagney  <cagney@redhat.com>
 
 	* TestDisassemblerCommand.java: Do not use explicit timeouts.
diff --git a/frysk-core/frysk/hpd/TestHpdTestHarness.java b/frysk-core/frysk/hpd/TestHpdTestHarness.java
index 41c04a5..73bcfaa 100644
--- a/frysk-core/frysk/hpd/TestHpdTestHarness.java
+++ b/frysk-core/frysk/hpd/TestHpdTestHarness.java
@@ -49,22 +49,22 @@ public class TestHpdTestHarness extends TestLib {
 	e = new HpdTestbed();
 	e.send("load " + Config.getPkgLibFile("funit-threads-looper").getPath()
 		+ "\n");
-	e.expect("Loaded executable file*");
+	e.expect("Loaded executable file.*");
 	e.send("run\n");
-	e.expect("Attached to process*");
+	e.expect("Attached to process.*");
 	e.send("go\n");
-	e.expect("Running process*");
+	e.expect("Running process.*");
 	e.send("kill\n");
-	e.expect("Killing process*");
-	e.expect("Loaded executable file*");
+	e.expect("Killing process.*");
+	e.expect("Loaded executable file.*");
 	e.send("run\n");
-	e.expect("Attached to process*");
+	e.expect("Attached to process.*");
 	e.send("go\n");
 	e.expect("Running process*");
 	e.send("kill\n");
-	e.expect("Killing process*");
-	e.expect("Loaded executable file*");
+	e.expect("Killing process.*");
+	e.expect("Loaded executable file.*");
 	e.expect("quit\n");
-	e.expect("Quitting...");
+	e.expect("Quitting\\.\\.\\.");
     }
 }


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


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

only message in thread, other threads:[~2008-01-25 19:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-01-25 19:18 [SCM] master: Fix pattern matches rmoseley

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