diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-04-17 16:32:58 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-04-17 16:32:58 +0300 |
commit | 4a4e94a4eb04cb8a57d54a357409da47821020ab (patch) | |
tree | 090c1c57c651610804304cac0480a002811e9c09 | |
parent | 91ce0a8aea87f8bbafe3d6718e146d10c955c296 (diff) | |
parent | 0ccada449bd523297c192de759bd27c21f20a8e3 (diff) | |
download | egawk-4a4e94a4eb04cb8a57d54a357409da47821020ab.tar.gz egawk-4a4e94a4eb04cb8a57d54a357409da47821020ab.tar.bz2 egawk-4a4e94a4eb04cb8a57d54a357409da47821020ab.zip |
Merge branch 'master' into feature/fix-comments
-rw-r--r-- | test/ChangeLog | 7 | ||||
-rw-r--r-- | test/nonfatal1.awk | 4 | ||||
-rw-r--r-- | test/nonfatal1.ok | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 7934f640..c47ad6a0 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,10 @@ +2018-04-17 Arnold D. Robbins <arnold@skeeve.com> + + * 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 <vidgizmo@gmail.com> for the report. + 2018-04-14 Manuel Collado <m-collado@users.sourceforge.net> * Makefile.am (readdir_retest): Add new test. diff --git a/test/nonfatal1.awk b/test/nonfatal1.awk index a9228f3a..b782266d 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/local@#!%host/25" print (ERRNO != "") } diff --git a/test/nonfatal1.ok b/test/nonfatal1.ok index 51583f2c..1d176f17 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 (local@#!%host, 25) invalid 1 |