[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-295
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2958-g4b98106 |
Date: |
Tue, 17 Apr 2018 09:31:40 -0400 (EDT) |
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, gawk-4.2-stable has been updated
via 4b98106ce555f9364541e941973852ddc4d34389 (commit)
from dde5bd1c2baadf2c34f15187efb481694043d606 (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=4b98106ce555f9364541e941973852ddc4d34389
commit 4b98106ce555f9364541e941973852ddc4d34389
Author: Arnold D. Robbins <address@hidden>
Date: Tue Apr 17 16:22:44 2018 +0300
Fix nonfatal1 test for ISPs that resolve local:host.domain.
diff --git a/test/ChangeLog b/test/ChangeLog
index 7934f64..c47ad6a 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,10 @@
+2018-04-17 Arnold D. Robbins <address@hidden>
+
+ * nonfatal1.awk, nonfatal1.ok: Add a bunch of bad characters
+ to the hostname so that ISPs who resove local:host don't
+ cause the test to time out instead of failing. Thanks to
+ Mike Burkett <address@hidden> for the report.
+
2018-04-14 Manuel Collado <address@hidden>
* Makefile.am (readdir_retest): Add new test.
diff --git a/test/nonfatal1.awk b/test/nonfatal1.awk
index a9228f3..b782266 100644
--- a/test/nonfatal1.awk
+++ b/test/nonfatal1.awk
@@ -1,6 +1,6 @@
BEGIN {
PROCINFO["NONFATAL"]
- # note that ":" is not a valid hostname character
- print |& "/inet/tcp/0/local:host/25"
+ # note the bad characters in the hostname
+ print |& "/inet/tcp/0/address@hidden/25"
print (ERRNO != "")
}
diff --git a/test/nonfatal1.ok b/test/nonfatal1.ok
index 51583f2..1d176f1 100644
--- a/test/nonfatal1.ok
+++ b/test/nonfatal1.ok
@@ -1,2 +1,2 @@
-gawk: nonfatal1.awk:4: warning: remote host and port information (local:host,
25) invalid
+gawk: nonfatal1.awk:4: warning: remote host and port information
(address@hidden, 25) invalid
1
-----------------------------------------------------------------------
Summary of changes:
test/ChangeLog | 7 +++++++
test/nonfatal1.awk | 4 ++--
test/nonfatal1.ok | 2 +-
3 files changed, 10 insertions(+), 3 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2958-g4b98106,
Arnold Robbins <=