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-3080-g13b2091
Date: Tue, 17 Apr 2018 09:10:10 -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  13b20913ecc176e39546543aedc0b0ae313cc3f6 (commit)
       via  29cd83fa999289eb104f07de28ce7e6117396b7d (commit)
       via  a0b3bdc6f23e87926b8d0031faa4a69508c48a18 (commit)
       via  16fe43e8f68a54aedca6f13b5bc790c44d03a360 (commit)
      from  652a3980dc343268ca95c5fd33783730ac07ab43 (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=13b20913ecc176e39546543aedc0b0ae313cc3f6

commit 13b20913ecc176e39546543aedc0b0ae313cc3f6
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Apr 17 16:06:40 2018 +0300

    Improve strftime test.

diff --git a/test/ChangeLog b/test/ChangeLog
index 93be481..08538c9 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,6 +1,7 @@
 2018-04-17         Arnold D. Robbins     <address@hidden>
 
        * Makefile.am (NEED_RE_INTERVAL): Spell the macro correctly.
+       (strftime): Pass -v DATECMD="$(DATE)" to match pc usage.
 
 2018-04-14         Manuel Collado       <address@hidden>
 
diff --git a/test/Makefile.am b/test/Makefile.am
index 22526c7..9fae9cf 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1630,7 +1630,7 @@ strftime::
        @echo $@
        @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=C ; export GAWKLOCALE; \
        TZ=GMT0; export TZ; \
-       $(AWK) -v OUTPUT=_$@ -f "$(srcdir)"/strftime.awk || echo EXIT CODE: $$? 
>> _$@
+       $(AWK) -v OUTPUT=_$@ -v DATECMD="$(DATE)" -f "$(srcdir)"/strftime.awk 
|| echo EXIT CODE: $$? >> _$@
        @-$(CMP) strftime.ok _$@ && rm -f _$@ strftime.ok || exit 0
 
 devfd::
diff --git a/test/Makefile.in b/test/Makefile.in
index 7796c0c..fd923d3 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -2074,7 +2074,7 @@ strftime::
        @echo $@
        @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=C ; export GAWKLOCALE; \
        TZ=GMT0; export TZ; \
-       $(AWK) -v OUTPUT=_$@ -f "$(srcdir)"/strftime.awk || echo EXIT CODE: $$? 
>> _$@
+       $(AWK) -v OUTPUT=_$@ -v DATECMD="$(DATE)" -f "$(srcdir)"/strftime.awk 
|| echo EXIT CODE: $$? >> _$@
        @-$(CMP) strftime.ok _$@ && rm -f _$@ strftime.ok || exit 0
 
 devfd::

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=29cd83fa999289eb104f07de28ce7e6117396b7d

commit 29cd83fa999289eb104f07de28ce7e6117396b7d
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Apr 17 15:59:49 2018 +0300

    Fix generation of tests needing --re_interval.

diff --git a/test/ChangeLog b/test/ChangeLog
index c69bd4d..93be481 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
+2018-04-17         Arnold D. Robbins     <address@hidden>
+
+       * Makefile.am (NEED_RE_INTERVAL): Spell the macro correctly.
+
 2018-04-14         Manuel Collado       <address@hidden>
 
        * Makefile.am (readdir_retest): Add new test.
diff --git a/test/Makefile.am b/test/Makefile.am
index bd789a1..22526c7 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1349,7 +1349,7 @@ NEED_POSIX = printf0 posix2008sub paramasfunc1 
paramasfunc2 muldimposix
 NEED_PRETTY = profile4 profile5 profile8 profile9 profile10
 
 # List of tests that need --re-interval
-NEED_RE_INTEVAL = gsubtst3 reint reint2
+NEED_RE_INTERVAL = gsubtst3 reint reint2
 
 # List of tests that need --traditional
 NEED_TRADITIONAL = litoct tradanch rscompat
diff --git a/test/Makefile.in b/test/Makefile.in
index 5a9ea11..7796c0c 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1606,7 +1606,7 @@ NEED_POSIX = printf0 posix2008sub paramasfunc1 
paramasfunc2 muldimposix
 NEED_PRETTY = profile4 profile5 profile8 profile9 profile10
 
 # List of tests that need --re-interval
-NEED_RE_INTEVAL = gsubtst3 reint reint2
+NEED_RE_INTERVAL = gsubtst3 reint reint2
 
 # List of tests that need --traditional
 NEED_TRADITIONAL = litoct tradanch rscompat
@@ -3053,7 +3053,7 @@ gsubtst2:
 
 gsubtst3:
        @echo $@
-       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  --re-interval < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
 gsubtst4:
@@ -4345,13 +4345,13 @@ regx8bit:
 
 reint:
        @echo $@
-       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  --re-interval < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
 reint2:
        @echo $@
        @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=en_US.UTF-8; export GAWKLOCALE; \
-       AWKPATH="$(srcdir)" $(AWK) -f address@hidden  < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+       AWKPATH="$(srcdir)" $(AWK) -f address@hidden  --re-interval < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
 rsgetline:
diff --git a/test/Maketests b/test/Maketests
index c9479ad..073f0e0 100644
--- a/test/Maketests
+++ b/test/Maketests
@@ -434,7 +434,7 @@ gsubtst2:
 
 gsubtst3:
        @echo $@
-       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  --re-interval < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
 gsubtst4:
@@ -1726,13 +1726,13 @@ regx8bit:
 
 reint:
        @echo $@
-       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  --re-interval < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
 reint2:
        @echo $@
        @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=en_US.UTF-8; export GAWKLOCALE; \
-       AWKPATH="$(srcdir)" $(AWK) -f address@hidden  < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+       AWKPATH="$(srcdir)" $(AWK) -f address@hidden  --re-interval < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
 rsgetline:

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

commit a0b3bdc6f23e87926b8d0031faa4a69508c48a18
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Apr 17 15:55:04 2018 +0300

    Update copyright years on pc/Makefile.tst.

diff --git a/pc/ChangeLog b/pc/ChangeLog
index 728c131..63f5db1 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,7 @@
+2018-04-17         Arnold D. Robbins     <address@hidden>
+
+       * Makefile.tst.prologue, Makefile.tst: Update copyright years.
+
 2018-04-15         Arnold D. Robbins     <address@hidden>
 
        * GenMakefileTst.awk: Further improve processing of input file.
diff --git a/pc/Makefile.tst b/pc/Makefile.tst
index 675d004..ade146f 100644
--- a/pc/Makefile.tst
+++ b/pc/Makefile.tst
@@ -1,6 +1,6 @@
 # Makefile for GNU Awk test suite.
 #
-# Copyright (C) 1988-2016 the Free Software Foundation, Inc.
+# Copyright (C) 1988-2018 the Free Software Foundation, Inc.
 # 
 # This file is part of GAWK, the GNU implementation of the
 # AWK Programming Language.
diff --git a/pc/Makefile.tst.prologue b/pc/Makefile.tst.prologue
index fdecadc..96d9149 100644
--- a/pc/Makefile.tst.prologue
+++ b/pc/Makefile.tst.prologue
@@ -1,6 +1,6 @@
 # Makefile for GNU Awk test suite.
 #
-# Copyright (C) 1988-2016 the Free Software Foundation, Inc.
+# Copyright (C) 1988-2018 the Free Software Foundation, Inc.
 # 
 # This file is part of GAWK, the GNU implementation of the
 # AWK Programming Language.

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=16fe43e8f68a54aedca6f13b5bc790c44d03a360

commit 16fe43e8f68a54aedca6f13b5bc790c44d03a360
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Apr 17 15:54:01 2018 +0300

    Update test/make.out.ok.

diff --git a/test/make.out.ok b/test/make.out.ok
index e66ba2d..ecf4a94 100644
--- a/test/make.out.ok
+++ b/test/make.out.ok
@@ -6,6 +6,7 @@ Making check in .
 make[1]: Entering directory '/home/arnold/Gnu/gawk/gawk.git'
 make 'CFLAGS=-g -DARRAYDEBUG -DYYDEBUG -DLOCALEDEBUG' 'LDFLAGS=' check-local
 make[2]: Entering directory '/home/arnold/Gnu/gawk/gawk.git'
+make[2]: Nothing to be done for 'check-local'.
 make[2]: Leaving directory '/home/arnold/Gnu/gawk/gawk.git'
 make[1]: Leaving directory '/home/arnold/Gnu/gawk/gawk.git'
 Making check in extension
@@ -550,6 +551,7 @@ ordchr
 ordchr2
 readdir
 readdir_test
+readdir_retest
 readfile
 readfile2
 revout

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

Summary of changes:
 pc/ChangeLog             |  4 ++++
 pc/Makefile.tst          |  2 +-
 pc/Makefile.tst.prologue |  2 +-
 test/ChangeLog           |  5 +++++
 test/Makefile.am         |  4 ++--
 test/Makefile.in         | 10 +++++-----
 test/Maketests           |  6 +++---
 test/make.out.ok         |  2 ++
 8 files changed, 23 insertions(+), 12 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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