gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3660-g708196


From: Andrew J. Schorr
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3660-g708196d
Date: Sun, 17 Feb 2019 10:16:13 -0500 (EST)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  708196dcbb974209f586a749ef6045c8c3039e1c (commit)
      from  028c972a224ea2d6e1e7ed61f12553e95e695e1d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=708196dcbb974209f586a749ef6045c8c3039e1c

commit 708196dcbb974209f586a749ef6045c8c3039e1c
Author: Andrew J. Schorr <address@hidden>
Date:   Sun Feb 17 10:14:09 2019 -0500

    Tweak timeout test to reduce likelihood of failure.

diff --git a/test/ChangeLog b/test/ChangeLog
index 5b6fd3b..173832d 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,9 @@
+2019-02-17         Andrew J. Schorr     <address@hidden>
+
+       * timeout.awk, timeout.ok: Increase READ_TIMEOUT to 400 to increase
+       the scheduler margin of error from 100 ms to 200 ms to reduce the
+       likelihood of spurious test failures.
+
 2019-02-15         Arnold D. Robbins     <address@hidden>
 
        * profile11.ok: Updated after code fix.
diff --git a/test/timeout.awk b/test/timeout.awk
index ccf4537..ba6d87b 100644
--- a/test/timeout.awk
+++ b/test/timeout.awk
@@ -2,7 +2,7 @@ BEGIN {
        cmd = "echo hello; sleep 1; echo goodbye"
 
        print "With timeouts"
-       PROCINFO[cmd, "READ_TIMEOUT"] = 300
+       PROCINFO[cmd, "READ_TIMEOUT"] = 400
        while ((rc = (cmd | getline x)) > 0)
                print x
        if (rc < 0)
diff --git a/test/timeout.ok b/test/timeout.ok
index a388747..f1d791b 100644
--- a/test/timeout.ok
+++ b/test/timeout.ok
@@ -7,6 +7,5 @@ With timeouts and retries
 hello
 1 timed out; trying again
 2 timed out; trying again
-3 timed out; trying again
 goodbye
 0

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

Summary of changes:
 test/ChangeLog   | 6 ++++++
 test/timeout.awk | 2 +-
 test/timeout.ok  | 1 -
 3 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]