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-1158-gb6c957


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-1158-gb6c957d
Date: Sun, 08 Mar 2015 19:25:45 +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, master has been updated
       via  b6c957dae27d5f10393572391c75c51c85a3a68c (commit)
       via  6965b92f1bc3d5aca7a39d31cc6a7e5fd0e0c1a9 (commit)
       via  dae49acd6f32a875fed4781f33a926f8013c69b4 (commit)
      from  f001d6b9b3e53b3148d2cfe39746ccea90b8fdeb (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=b6c957dae27d5f10393572391c75c51c85a3a68c

commit b6c957dae27d5f10393572391c75c51c85a3a68c
Author: Arnold D. Robbins <address@hidden>
Date:   Sun Mar 8 21:25:28 2015 +0200

    Fix nonfatal3 test.

diff --git a/test/ChangeLog b/test/ChangeLog
index 2652429..b6338a8 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2015-03-08         Arnold D. Robbins     <address@hidden>
+
+       * nonfatal3.awk, nonfatal3.ok: Adjust for portability.
+       Thanks to Hermann Peifer for the report.
+
 2015-03-06         Arnold D. Robbins     <address@hidden>
 
        * charasbytes.awk, ofs1.awk, range1.awk, sortglos.awk,
diff --git a/test/nonfatal3.awk b/test/nonfatal3.awk
index eace9ae..b2a4ec9 100644
--- a/test/nonfatal3.awk
+++ b/test/nonfatal3.awk
@@ -2,5 +2,5 @@ BEGIN {
        PROCINFO["NONFATAL"]
        # valid host but bogus port
        print |& "/inet/tcp/0/localhost/0"
-       print ERRNO
+       print ERRNO != ""
 }
diff --git a/test/nonfatal3.ok b/test/nonfatal3.ok
index 5d5be35..d00491f 100644
--- a/test/nonfatal3.ok
+++ b/test/nonfatal3.ok
@@ -1 +1 @@
-Connection refused
+1

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=6965b92f1bc3d5aca7a39d31cc6a7e5fd0e0c1a9

commit 6965b92f1bc3d5aca7a39d31cc6a7e5fd0e0c1a9
Merge: f001d6b dae49ac
Author: Arnold D. Robbins <address@hidden>
Date:   Sun Mar 8 21:22:59 2015 +0200

    Merge branch 'gawk-4.1-stable'

diff --cc ChangeLog
index cc15ccb,9dfad08..2e784a6
--- a/ChangeLog
+++ b/ChangeLog
@@@ -1,25 -1,7 +1,27 @@@
  2015-03-08         Arnold D. Robbins     <address@hidden>
  
+       * re.c (regexflags2str): Removed. It was redundant.
+ 
 +      * io.c (devopen): Change the logic such that if nonfatal is true
 +      for the socket, don't do retries.  Also clean up the formatting
 +      some.  At strictopen, check if errno is ENOENT and if so, propagate
 +      the error from getaddrinfo() up to the caller. Add explanatory
 +      comments.
 +
 +2015-02-28         Andrew J. Schorr     <address@hidden>
 +
 +      * io.c (pty_vs_pipe): Remove check for NULL PROCINFO_node, since
 +      this is now checked inside in_PROCINFO.
 +
 +2015-02-27         Andrew J. Schorr     <address@hidden>
 +
 +      * io.c (socketopen): New parameter hard_error; set it if
 +      getaddrinfo() fails. Change fatals to warnings.
 +      (devopen): Pass in address of boolean hard_error variable
 +      and stop trying to open the file if hard_error is true.
 +      Save and restore errno around call to socketopen() and
 +      use restored errno if open() fails at strictopen.
 +
  2015-02-27         Arnold D. Robbins     <address@hidden>
  
        * symbol.c (check_param_names): Fix argument order in memset() call.

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

Summary of changes:
 ChangeLog          |    2 ++
 re.c               |   37 -------------------------------------
 test/ChangeLog     |    5 +++++
 test/nonfatal3.awk |    2 +-
 test/nonfatal3.ok  |    2 +-
 5 files changed, 9 insertions(+), 39 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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