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-3664-gf14c8d


From: Eli Zaretskii
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3664-gf14c8d4
Date: Fri, 22 Feb 2019 02:41:30 -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, master has been updated
       via  f14c8d4f9b88e0b40a90ded574e0a1b496e305da (commit)
      from  fea479412fa9d344f56675a22c8de26cb63836fb (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=f14c8d4f9b88e0b40a90ded574e0a1b496e305da

commit f14c8d4f9b88e0b40a90ded574e0a1b496e305da
Author: Eli Zaretskii <address@hidden>
Date:   Fri Feb 22 09:40:38 2019 +0200

    readdir_test and readdir_retest tests no longer fail on MinGW.

diff --git a/pc/ChangeLog b/pc/ChangeLog
index 9473b0d..5d78295 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,8 @@
+2019-02-22  Eli Zaretskii  <address@hidden>
+
+       * Makefile.tst: Regenerated after changing test/Makefile.am and
+       test/Makefile.in.
+
 2019-02-07         Arnold D. Robbins     <address@hidden>
 
        * Makefile.tst, config.h: Regenerated after DJGPP changes.
diff --git a/pc/Makefile.tst b/pc/Makefile.tst
index 4bdb1ec..10666b8 100644
--- a/pc/Makefile.tst
+++ b/pc/Makefile.tst
@@ -191,7 +191,7 @@ GAWK_EXT_TESTS = \
        backw badargs beginfile1 beginfile2 binmode1 \
        charasbytes colonwarn clos1way clos1way2 clos1way3 clos1way4 clos1way5 \
        clos1way6 crlf \
-       dbugeval dbugeval2 dbugtypedre1 dbugtypedre2 delsub \
+       dbugeval dbugeval2 dbugeval3 dbugtypedre1 dbugtypedre2 delsub \
        devfd devfd1 devfd2 dfacheck1 dumpvars \
        errno exit \
        fieldwdth forcenum fpat1 fpat2 fpat3 fpat4 fpat5 fpat6 fpatnull fsfwfs \
@@ -207,7 +207,7 @@ GAWK_EXT_TESTS = \
        nsbad nsbad_cmd nsforloop nsfuncrecurse nsindirect1 nsindirect2 nsprof1 
nsprof2 \
        patsplit posix printfbad1 printfbad2 printfbad3 printfbad4 printhuge \
        procinfs profile0 profile1 profile2 profile3 profile4 profile5 profile6 
\
-       profile7 profile8 profile9 profile10 profile11 pty1 pty2 \
+       profile7 profile8 profile9 profile10 profile11 profile12 pty1 pty2 \
        rebuf regnul1 regnul2 regx8bit reginttrad reint reint2 rsgetline 
rsglstdin \
        rsstart1 rsstart2 rsstart3 rstest6 \
        shadow shadowbuiltin sortfor sortfor2 sortu sourcesplit 
split_after_fpat \
@@ -239,7 +239,7 @@ SHLIB_TESTS = \
 
 
 # List of the tests which should be run with --debug option:
-NEED_DEBUG = dbugtypedre1 dbugtypedre2 dbugeval2 symtab10
+NEED_DEBUG = dbugtypedre1 dbugtypedre2 dbugeval2 dbugeval3 symtab10
 
 # List of the tests which should be run with --lint option:
 NEED_LINT = \
@@ -321,8 +321,7 @@ EXPECTED_FAIL_MINGW = \
        backbigs1 backsmalls1 clos1way6 devfd devfd1 devfd2 \
        errno exitval2 fork fork2 fts getfile getlnhd ignrcas3 inetdayt \
        inetecht mbfw1 mbprintf1 mbprintf4 mbstr1 mbstr2 pid pipeio2 \
-       pty1 pty2 readdir readdir_test readdir_retest rstest4 rstest5 \
-       status-close timeout
+       pty1 pty2 readdir rstest4 rstest5 status-close timeout
 
 
 # List of the files that appear in manual tests or are for reserve testing:
@@ -818,6 +817,12 @@ profile7:
        @sed 1,2d < address@hidden > _$@; rm address@hidden
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
+profile12:
+       @echo $@
+       @$(AWK) address@hidden -f "$(srcdir)"/address@hidden 
"$(srcdir)"/address@hidden > _$@ 2>&1 || echo EXIT CODE: $$? >> _$@
+       @rm address@hidden
+       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
+
 mpfrieee:
        @echo $@
        @$(AWK) -M -vPREC=double -f "$(srcdir)"/address@hidden > _$@ 2>&1 || 
echo EXIT CODE: $$? >> _$@
@@ -970,14 +975,12 @@ readdir:
 
 readdir_test:
        @echo $@
-       @echo Expect $@ to fail with MinGW.
        @$(AWK) -lreaddir -F$(SLASH) '{printf "[%s] [%s] [%s] [%s]\n", $$1, 
$$2, $$3, $$4}' "$(top_srcdir)" > address@hidden
        @$(AWK) -lreaddir_test '{printf "[%s] [%s] [%s] [%s]\n", $$1, $$2, $$3, 
$$4}' "$(top_srcdir)" > _$@
        @-$(CMP) address@hidden _$@ && rm -f address@hidden _$@
 
 readdir_retest:
        @echo $@
-       @echo Expect $@ to fail with MinGW.
        @$(AWK) -lreaddir -F$(SLASH) -f "$(srcdir)"/address@hidden 
"$(top_srcdir)" > address@hidden
        @$(AWK) -lreaddir_test -F$(SLASH) -f "$(srcdir)"/address@hidden 
"$(top_srcdir)" > _$@
        @-$(CMP) address@hidden _$@ && rm -f address@hidden _$@
@@ -2478,6 +2481,11 @@ dbugeval2:
        @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  --debug < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
+dbugeval3:
+       @echo $@
+       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  --debug < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
+
 dbugtypedre1:
        @echo $@
        @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  --debug < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
diff --git a/test/ChangeLog b/test/ChangeLog
index 0c9b7ce..b34c989 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,9 @@
+2019-02-22  Eli Zaretskii  <address@hidden>
+
+       * Makefile.in (EXPECTED_FAIL_MINGW):
+       * Makefile.am (EXPECTED_FAIL_MINGW): Remove readdir_test and
+       readdir_retest.
+
 2019-02-17         Arnold D. Robbins     <address@hidden>
 
        * Makefile.am (EXTRA_DIST): New test: dbugeval3.
diff --git a/test/Makefile.am b/test/Makefile.am
index cba648e..f9994dd 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1452,8 +1452,7 @@ EXPECTED_FAIL_MINGW = \
        backbigs1 backsmalls1 clos1way6 devfd devfd1 devfd2 \
        errno exitval2 fork fork2 fts getfile getlnhd ignrcas3 inetdayt \
        inetecht mbfw1 mbprintf1 mbprintf4 mbstr1 mbstr2 pid pipeio2 \
-       pty1 pty2 readdir readdir_test readdir_retest rstest4 rstest5 \
-       status-close timeout
+       pty1 pty2 readdir rstest4 rstest5 status-close timeout
 
 # List of the files that appear in manual tests or are for reserve testing:
 GENTESTS_UNUSED = Makefile.in checknegtime.awk dtdgport.awk fix-fmtspcl.awk \
diff --git a/test/Makefile.in b/test/Makefile.in
index 114bf30..9404a86 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1712,8 +1712,7 @@ EXPECTED_FAIL_MINGW = \
        backbigs1 backsmalls1 clos1way6 devfd devfd1 devfd2 \
        errno exitval2 fork fork2 fts getfile getlnhd ignrcas3 inetdayt \
        inetecht mbfw1 mbprintf1 mbprintf4 mbstr1 mbstr2 pid pipeio2 \
-       pty1 pty2 readdir readdir_test readdir_retest rstest4 rstest5 \
-       status-close timeout
+       pty1 pty2 readdir rstest4 rstest5 status-close timeout
 
 
 # List of the files that appear in manual tests or are for reserve testing:

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

Summary of changes:
 pc/ChangeLog     |  5 +++++
 pc/Makefile.tst  | 22 +++++++++++++++-------
 test/ChangeLog   |  6 ++++++
 test/Makefile.am |  3 +--
 test/Makefile.in |  3 +--
 5 files changed, 28 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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