gawk-diffs
[Top][All Lists]
Advanced

[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-309


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-3097-ged770e3
Date: Mon, 24 Dec 2018 14:52:19 -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, gawk-4.2-stable has been updated
       via  ed770e303639529c2dcf9f44cb5260c8bae8d993 (commit)
      from  8754866dc154282838f49ea65784d1177a85306b (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=ed770e303639529c2dcf9f44cb5260c8bae8d993

commit ed770e303639529c2dcf9f44cb5260c8bae8d993
Author: Arnold D. Robbins <address@hidden>
Date:   Mon Dec 24 21:51:57 2018 +0200

    Make inet tests keep going if they fail.

diff --git a/test/ChangeLog b/test/ChangeLog
index dd6469c..69cedf6 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2018-12-24         Arnold D. Robbins     <address@hidden>
+
+       * Makefile.am (inetdayt, inetdayu, inetecht, inetechu): Add
+       leading '-' so that if it fails tests keep going.
+
 2018-12-23         Arnold D. Robbins     <address@hidden>
 
        * inftest.ok: Updated after code changes.
diff --git a/test/Makefile.am b/test/Makefile.am
index fd2b940..c6b8cae 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1760,20 +1760,20 @@ inetmesg::
 
 inetechu::
        @echo This test is for establishing UDP connections
-       @$(AWK) 'BEGIN {print "" |& "/inet/udp/0/127.0.0.1/9"}'
+       @-$(AWK) 'BEGIN {print "" |& "/inet/udp/0/127.0.0.1/9"}'
 
 inetecht::
        @echo This test is for establishing TCP connections
-       @$(AWK) 'BEGIN {print "" |& "/inet/tcp/0/127.0.0.1/9"}'
+       @-$(AWK) 'BEGIN {print "" |& "/inet/tcp/0/127.0.0.1/9"}'
 
 inetdayu::
        @echo This test is for bidirectional UDP transmission
-       @$(AWK) 'BEGIN { print "" |& "/inet/udp/0/127.0.0.1/13"; \
+       @-$(AWK) 'BEGIN { print "" |& "/inet/udp/0/127.0.0.1/13"; \
        "/inet/udp/0/127.0.0.1/13" |& getline; print $0}'
 
 inetdayt::
        @echo This test is for bidirectional TCP transmission
-       @$(AWK) 'BEGIN { print "" |& "/inet/tcp/0/127.0.0.1/13"; \
+       @-$(AWK) 'BEGIN { print "" |& "/inet/tcp/0/127.0.0.1/13"; \
        "/inet/tcp/0/127.0.0.1/13" |& getline; print $0}'
 
 redfilnm::
diff --git a/test/Makefile.in b/test/Makefile.in
index a22373e..c95a1dc 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -2208,20 +2208,20 @@ inetmesg::
 
 inetechu::
        @echo This test is for establishing UDP connections
-       @$(AWK) 'BEGIN {print "" |& "/inet/udp/0/127.0.0.1/9"}'
+       @-$(AWK) 'BEGIN {print "" |& "/inet/udp/0/127.0.0.1/9"}'
 
 inetecht::
        @echo This test is for establishing TCP connections
-       @$(AWK) 'BEGIN {print "" |& "/inet/tcp/0/127.0.0.1/9"}'
+       @-$(AWK) 'BEGIN {print "" |& "/inet/tcp/0/127.0.0.1/9"}'
 
 inetdayu::
        @echo This test is for bidirectional UDP transmission
-       @$(AWK) 'BEGIN { print "" |& "/inet/udp/0/127.0.0.1/13"; \
+       @-$(AWK) 'BEGIN { print "" |& "/inet/udp/0/127.0.0.1/13"; \
        "/inet/udp/0/127.0.0.1/13" |& getline; print $0}'
 
 inetdayt::
        @echo This test is for bidirectional TCP transmission
-       @$(AWK) 'BEGIN { print "" |& "/inet/tcp/0/127.0.0.1/13"; \
+       @-$(AWK) 'BEGIN { print "" |& "/inet/tcp/0/127.0.0.1/13"; \
        "/inet/tcp/0/127.0.0.1/13" |& getline; print $0}'
 
 redfilnm::

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

Summary of changes:
 test/ChangeLog   | 5 +++++
 test/Makefile.am | 8 ++++----
 test/Makefile.in | 8 ++++----
 3 files changed, 13 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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