diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-12-24 21:51:57 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-12-24 21:51:57 +0200 |
commit | ed770e303639529c2dcf9f44cb5260c8bae8d993 (patch) | |
tree | 9d34fa5ebeb06c090fc4ae3eb52a882940a746ff | |
parent | 8754866dc154282838f49ea65784d1177a85306b (diff) | |
download | egawk-ed770e303639529c2dcf9f44cb5260c8bae8d993.tar.gz egawk-ed770e303639529c2dcf9f44cb5260c8bae8d993.tar.bz2 egawk-ed770e303639529c2dcf9f44cb5260c8bae8d993.zip |
Make inet tests keep going if they fail.
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 8 | ||||
-rw-r--r-- | test/Makefile.in | 8 |
3 files changed, 13 insertions, 8 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index dd6469c2..69cedf65 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2018-12-24 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (inetdayt, inetdayu, inetecht, inetechu): Add + leading '-' so that if it fails tests keep going. + 2018-12-23 Arnold D. Robbins <arnold@skeeve.com> * inftest.ok: Updated after code changes. diff --git a/test/Makefile.am b/test/Makefile.am index fd2b9402..c6b8caeb 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 a22373ef..c95a1dc8 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:: |