public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: pmuldoon@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: Fix some expect manual timeout cases.
Date: Mon, 17 Dec 2007 18:22:00 -0000	[thread overview]
Message-ID: <20071217182236.20660.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  aaef9996c9d45d73d88b04ddd1334b53970d7e7a (commit)
      from  b1956ae0e033bbecd1d58cdf732e806968e82e81 (commit)

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

- Log -----------------------------------------------------------------
commit aaef9996c9d45d73d88b04ddd1334b53970d7e7a
Author: Phil Muldoon <pmuldoon@redhat.com>
Date:   Mon Dec 17 18:22:27 2007 +0000

    Fix some expect manual timeout cases.
    
    2007-12-17  Phil Muldoon  <pmuldoon@redhat.com>
    
            * TestAuxvCommand.java (testAuxVCoreCommand): Remove expect
            timeout override.
            * TestCoreCommand.java: Ditto.

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

Summary of changes:
 frysk-core/frysk/hpd/ChangeLog            |    8 +++++++-
 frysk-core/frysk/hpd/TestAuxvCommand.java |    2 +-
 frysk-core/frysk/hpd/TestCoreCommand.java |   12 ++++++------
 3 files changed, 14 insertions(+), 8 deletions(-)

First 500 lines of diff:
diff --git a/frysk-core/frysk/hpd/ChangeLog b/frysk-core/frysk/hpd/ChangeLog
index c8afbd5..082baca 100644
--- a/frysk-core/frysk/hpd/ChangeLog
+++ b/frysk-core/frysk/hpd/ChangeLog
@@ -1,4 +1,10 @@
-2007-12-14  cagney  <cagney@redhat.com>
+2007-12-17  Phil Muldoon  <pmuldoon@redhat.com>
+
+	* TestAuxvCommand.java (testAuxVCoreCommand): Remove expect
+	timeout override.
+	* TestCoreCommand.java: Ditto.
+
+2007-12-14  Andrew Cagney  <cagney@redhat.com>
 
 	* HpdTestbed.java: Update; EofException renamed to EndOfFileException.
 	* TestPreprocessor.java: Ditto.
diff --git a/frysk-core/frysk/hpd/TestAuxvCommand.java b/frysk-core/frysk/hpd/TestAuxvCommand.java
index a0f9c59..3b566b7 100644
--- a/frysk-core/frysk/hpd/TestAuxvCommand.java
+++ b/frysk-core/frysk/hpd/TestAuxvCommand.java
@@ -74,7 +74,7 @@ public class TestAuxvCommand extends TestLib {
     e = new HpdTestbed();
     e.send("core " + core.getPath()
 	   + " -noexe\n");
-    e.expect(5, "Attached to core file.*");
+    e.expect("Attached to core file.*");
     e.send("auxv\n");
     Iterator i = buildAuxv.auxvData.iterator();
     while (i.hasNext())
diff --git a/frysk-core/frysk/hpd/TestCoreCommand.java b/frysk-core/frysk/hpd/TestCoreCommand.java
index 834ce6c..e193acd 100644
--- a/frysk-core/frysk/hpd/TestCoreCommand.java
+++ b/frysk-core/frysk/hpd/TestCoreCommand.java
@@ -52,7 +52,7 @@ public class TestCoreCommand extends TestLib {
 	e = new HpdTestbed();
 	e.send("core " + Config.getPkgDataFile("test-core-x86").getPath()
 		+ " -noexe\n");
-	e.expect(5, "Attached to core file.*");
+	e.expect("Attached to core file.*");
 	e.close();
     }
     
@@ -60,7 +60,7 @@ public class TestCoreCommand extends TestLib {
 	e = new HpdTestbed();
 	e.send("core " + Config.getPkgDataFile("test-core-x86").getPath()
 		+ "\n");
-	e.expect(5, "Error:*");
+	e.expect("Error:*");
 	e.close();
     }
     
@@ -68,7 +68,7 @@ public class TestCoreCommand extends TestLib {
 	e = new HpdTestbed();
 	e.send("core " + Config.getPkgDataFile("test-core-x86").getPath()
 		+ "foo\n");
-	e.expect(5, "Error:*");
+	e.expect("Error:*");
 	e.close();
     }
 
@@ -80,7 +80,7 @@ public class TestCoreCommand extends TestLib {
 	e = new HpdTestbed();
 	e.send("core " + core.getPath() + " "
 	       + SlaveOffspring.getExecutable().getPath() + "\n");
-	e.expect(5, "Attached to core file.*");
+	e.expect("Attached to core file.*");
 	e.close();
 	core.delete();
     }
@@ -93,9 +93,9 @@ public class TestCoreCommand extends TestLib {
 	e = new HpdTestbed();
 	e.send("core " + core.getPath() + " "
 	       + SlaveOffspring.getExecutable().getPath() + "\n");
-	e.expect(5, "Attached to core file.*");
+	e.expect("Attached to core file.*");
 	e.send("run\n");
-	e.expect(5, "Attached to process*");
+	e.expect("Attached to process*");
 	e.close();
 	core.delete();
     }


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


                 reply	other threads:[~2007-12-17 18:22 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=20071217182236.20660.qmail@sourceware.org \
    --to=pmuldoon@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).