gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5498-gc6e97e72


From: Arnold Robbins
Subject: [SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5498-gc6e97e72
Date: Thu, 8 Aug 2024 12:47:09 -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, gawk-5.3-stable has been updated
       via  c6e97e72bf931e3f2ebfafcc892e9d86dff695a1 (commit)
      from  21b4a1139494fd22530d42ce8dfa784cd7c7c8d2 (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=c6e97e72bf931e3f2ebfafcc892e9d86dff695a1

commit c6e97e72bf931e3f2ebfafcc892e9d86dff695a1
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Thu Aug 8 19:46:48 2024 +0300

    Fix the colonwarn test.

diff --git a/pc/ChangeLog b/pc/ChangeLog
index d8c5b983..5a8edcdb 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,7 @@
+2024-08-08         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * Makefile.tst: Regenerated.
+
 2024-07-11         Arnold D. Robbins     <arnold@skeeve.com>
 
        * Makefile.tst: Regenerated.
diff --git a/pc/Makefile.tst b/pc/Makefile.tst
index 3bb4ab3b..c878bb14 100644
--- a/pc/Makefile.tst
+++ b/pc/Makefile.tst
@@ -1170,7 +1170,7 @@ reginttrad:
 colonwarn:
        @echo $@
        @-for i in 1 2 3 ; \
-       do $(AWK) -f "$(srcdir)"/$@.awk $$i < "$(srcdir)"/$@.in ; \
+       do $(AWK) -f "$(srcdir)"/$@.awk $$i < "$(srcdir)"/$@.in 2>&1 ; \
        done > _$@ || echo EXIT CODE: $$? >> _$@
        @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
 
diff --git a/test/ChangeLog b/test/ChangeLog
index 963bd31e..499fba6c 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2024-08-08         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * Makefile.am (colonwarn): Save stderr to get the warnings.
+       Thanks to Michal Jaegermann <michal.jnn@gmail.com>.
+
 2024-08-06         Arnold D. Robbins     <arnold@skeeve.com>
 
        * printf-corners.awk, printf-corners.ok, printf-corners-mpfr: Add
diff --git a/test/Makefile.am b/test/Makefile.am
index 878404fc..29ea440b 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -2550,7 +2550,7 @@ reginttrad:
 colonwarn:
        @echo $@
        @-for i in 1 2 3 ; \
-       do $(AWK) -f "$(srcdir)"/$@.awk $$i < "$(srcdir)"/$@.in ; \
+       do $(AWK) -f "$(srcdir)"/$@.awk $$i < "$(srcdir)"/$@.in 2>&1 ; \
        done > _$@ || echo EXIT CODE: $$? >> _$@
        @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
 
diff --git a/test/Makefile.in b/test/Makefile.in
index c4a054e4..0e4b39dc 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -3000,7 +3000,7 @@ reginttrad:
 colonwarn:
        @echo $@
        @-for i in 1 2 3 ; \
-       do $(AWK) -f "$(srcdir)"/$@.awk $$i < "$(srcdir)"/$@.in ; \
+       do $(AWK) -f "$(srcdir)"/$@.awk $$i < "$(srcdir)"/$@.in 2>&1 ; \
        done > _$@ || echo EXIT CODE: $$? >> _$@
        @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
 
diff --git a/test/colonwarn.ok b/test/colonwarn.ok
index d084ee3d..ea269a78 100644
--- a/test/colonwarn.ok
+++ b/test/colonwarn.ok
@@ -1,3 +1,6 @@
+gawk: ./colonwarn.awk:2: warning: regexp component `[:space:]' should probably 
be `[[:space:]]'
 ab
+gawk: ./colonwarn.awk:2: warning: regexp component `[:space:]' should probably 
be `[[:space:]]'
 ab
+gawk: ./colonwarn.awk:2: warning: regexp component `[:space:]' should probably 
be `[[:space:]]'
 ]b

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

Summary of changes:
 pc/ChangeLog      | 4 ++++
 pc/Makefile.tst   | 2 +-
 test/ChangeLog    | 5 +++++
 test/Makefile.am  | 2 +-
 test/Makefile.in  | 2 +-
 test/colonwarn.ok | 3 +++
 6 files changed, 15 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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