gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, non-fatal-io-2, updated. gawk-4.1.0-1150


From: Andrew J. Schorr
Subject: [gawk-diffs] [SCM] gawk branch, non-fatal-io-2, updated. gawk-4.1.0-1150-gb8ba983
Date: Mon, 02 Mar 2015 15:14:00 +0000

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, non-fatal-io-2 has been updated
       via  b8ba9836e05eb96daeed9614f045f5b81a826730 (commit)
      from  9b995ad21b921a502c7c94b3c591735e4f713728 (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=b8ba9836e05eb96daeed9614f045f5b81a826730

commit b8ba9836e05eb96daeed9614f045f5b81a826730
Author: Andrew J. Schorr <address@hidden>
Date:   Mon Mar 2 10:13:48 2015 -0500

    Fix test nonfatal1.

diff --git a/test/ChangeLog b/test/ChangeLog
index 5ece087..a286220 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,9 @@
+2015-03-02         Andrew J. Schorr     <address@hidden>
+
+       * nonfatal1.awk: Do not print ERRNO, since the value appears to be
+       platform-dependent.  Instead, print (ERRNO != "").
+       * nonfatal1.ok: Update.
+
 2015-02-28         Andrew J. Schorr     <address@hidden>
 
        * Makefile.am (EXTRA_DIST): Add nonfatal3.{awk,ok}.
diff --git a/test/nonfatal1.awk b/test/nonfatal1.awk
index 1eb85b1..a9228f3 100644
--- a/test/nonfatal1.awk
+++ b/test/nonfatal1.awk
@@ -2,5 +2,5 @@ BEGIN {
        PROCINFO["NONFATAL"]
        # note that ":" is not a valid hostname character
        print |& "/inet/tcp/0/local:host/25"
-       print ERRNO
+       print (ERRNO != "")
 }
diff --git a/test/nonfatal1.ok b/test/nonfatal1.ok
index 04fd705..51583f2 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
-No such file or directory
+1

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

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


hooks/post-receive
-- 
gawk



reply via email to

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