gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, feature/improve-tests, updated. gawk-4.1


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, feature/improve-tests, updated. gawk-4.1.0-3092-gefca1a5
Date: Thu, 19 Apr 2018 04:10:05 -0400 (EDT)

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, feature/improve-tests has been updated
       via  efca1a52fd8f17ac5793ab5b9f78e711a8ff951f (commit)
      from  c4108de07b15fac3df497a159e4a6e0e6bce2a61 (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=efca1a52fd8f17ac5793ab5b9f78e711a8ff951f

commit efca1a52fd8f17ac5793ab5b9f78e711a8ff951f
Author: Arnold D. Robbins <address@hidden>
Date:   Thu Apr 19 11:09:50 2018 +0300

    Continue improving test generation for MinGW.

diff --git a/pc/ChangeLog b/pc/ChangeLog
index 8a462a3..771d0e3 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,7 @@
+2018-04-19         Arnold D. Robbins     <address@hidden>
+
+       * GenMakefileTst.awk: Improve the 'Expect ...' messages.
+
 2018-04-18         Arnold D. Robbins     <address@hidden>
 
        * config.sed: Add HAVE_STDBOOL_H for MinGW.
diff --git a/pc/GenMakefileTst.awk b/pc/GenMakefileTst.awk
index 557be0f..b997ae4 100644
--- a/pc/GenMakefileTst.awk
+++ b/pc/GenMakefileTst.awk
@@ -118,11 +118,11 @@ function print_recipe(            i, start)
 
        # print the right warning
        if (name in djgpp && name in mingw) {
-               print "address@hidden Expect $@ to fail on DJGPP and MinGW"
+               print "address@hidden Expect $@ to fail with DJGPP and MinGW."
        } else if (name in djgpp) {
-               print "address@hidden Expect $@ to fail on DJGPP"
+               print "address@hidden Expect $@ to fail with DJGPP."
        } else if (name in mingw) {
-               print "address@hidden Expect $@ to fail on MinGW"
+               print "address@hidden Expect $@ to fail with MinGW."
        }
 
        # find first line from the end that starts with @
diff --git a/test/ChangeLog b/test/ChangeLog
index 56586a9..44480dd 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,5 +1,10 @@
 2018-04-19         Arnold D. Robbins     <address@hidden>
 
+       * Makefile.am (EXPECTED_FAIL_MINGW): Add clos1way6.
+       (readdir, fts): Move the 'echo $@' to be the first line.
+
+2018-04-19         Arnold D. Robbins     <address@hidden>
+
        * nonfatal1.awk, nonfatal1.ok: Change to use 1.2.3.4.5
        as the host. Thanks again to Mike Burkett <address@hidden>.
 
diff --git a/test/Makefile.am b/test/Makefile.am
index 9bc5864..c2f29bf 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1396,7 +1396,8 @@ EXPECTED_FAIL_DJGPP = \
 
 # List of tests that fail on MinGW
 EXPECTED_FAIL_MINGW = \
-       backbigs1 backsmalls1 devfd devfd1 devfd2 errno exitval2 fmtspcl \
+       backbigs1 backsmalls1 clos1way6 devfd devfd1 devfd2 errno \
+       exitval2 fmtspcl \
        fork fork2 fts getfile getlnhd ignrcas3 inetdayt inetecht mbfw1 \
        mbprintf1 mbprintf4 mbstr1 mbstr2 pid pipeio2 pty1 pty2 readdir \
        readdir_test rstest4 rstest5 status-close timeout
@@ -2027,11 +2028,11 @@ getfile:
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
 readdir:
+       @echo $@
        @if [ "`uname`" = Linux ] && [ "`stat -f . 2>/dev/null | awk 'NR == 2 { 
print $$NF }'`" = nfs ];  then \
        echo This test may fail on GNU/Linux systems when run on NFS or JFS 
filesystems.; \
        echo If it does, try rerunning on an ext'[234]' filesystem. ; \
        fi
-       @echo $@
        @$(AWK) -f "$(srcdir)"/readdir.awk "$(top_srcdir)" > _$@ || echo EXIT 
CODE: $$? >> _$@
        @ls -afi "$(top_srcdir)" > _dirlist
        @ls -lna "$(top_srcdir)" | sed 1d > _longlist
@@ -2052,6 +2053,7 @@ readdir_retest:
        @-$(CMP) address@hidden _$@ && rm -f address@hidden _$@
 
 fts:
+       @echo $@
        @case `uname` in \
        IRIX) \
        echo This test may fail on IRIX systems when run on an NFS filesystem.; 
\
@@ -2060,7 +2062,6 @@ fts:
        echo This test may fail on CYGWIN systems when run on an NFS 
filesystem.; \
        echo If it does, try rerunning on an ntfs filesystem. ;; \
        esac
-       @echo $@
        @$(AWK) -f "$(srcdir)"/fts.awk || echo EXIT CODE: $$? >> _$@
        @-$(CMP) address@hidden _$@ && rm -f address@hidden _$@
 
diff --git a/test/Makefile.in b/test/Makefile.in
index a72ffd6..3080c45 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1655,7 +1655,8 @@ EXPECTED_FAIL_DJGPP = \
 
 # List of tests that fail on MinGW
 EXPECTED_FAIL_MINGW = \
-       backbigs1 backsmalls1 devfd devfd1 devfd2 errno exitval2 fmtspcl \
+       backbigs1 backsmalls1 clos1way6 devfd devfd1 devfd2 errno \
+       exitval2 fmtspcl \
        fork fork2 fts getfile getlnhd ignrcas3 inetdayt inetecht mbfw1 \
        mbprintf1 mbprintf4 mbstr1 mbstr2 pid pipeio2 pty1 pty2 readdir \
        readdir_test rstest4 rstest5 status-close timeout
@@ -2472,11 +2473,11 @@ getfile:
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
 readdir:
+       @echo $@
        @if [ "`uname`" = Linux ] && [ "`stat -f . 2>/dev/null | awk 'NR == 2 { 
print $$NF }'`" = nfs ];  then \
        echo This test may fail on GNU/Linux systems when run on NFS or JFS 
filesystems.; \
        echo If it does, try rerunning on an ext'[234]' filesystem. ; \
        fi
-       @echo $@
        @$(AWK) -f "$(srcdir)"/readdir.awk "$(top_srcdir)" > _$@ || echo EXIT 
CODE: $$? >> _$@
        @ls -afi "$(top_srcdir)" > _dirlist
        @ls -lna "$(top_srcdir)" | sed 1d > _longlist
@@ -2497,6 +2498,7 @@ readdir_retest:
        @-$(CMP) address@hidden _$@ && rm -f address@hidden _$@
 
 fts:
+       @echo $@
        @case `uname` in \
        IRIX) \
        echo This test may fail on IRIX systems when run on an NFS filesystem.; 
\
@@ -2505,7 +2507,6 @@ fts:
        echo This test may fail on CYGWIN systems when run on an NFS 
filesystem.; \
        echo If it does, try rerunning on an ntfs filesystem. ;; \
        esac
-       @echo $@
        @$(AWK) -f "$(srcdir)"/fts.awk || echo EXIT CODE: $$? >> _$@
        @-$(CMP) address@hidden _$@ && rm -f address@hidden _$@
 

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

Summary of changes:
 pc/ChangeLog          | 4 ++++
 pc/GenMakefileTst.awk | 6 +++---
 test/ChangeLog        | 5 +++++
 test/Makefile.am      | 7 ++++---
 test/Makefile.in      | 7 ++++---
 5 files changed, 20 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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