gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, gawk-5.1-stable, updated. gawk-4.1.0-4385-g7419129f


From: Arnold Robbins
Subject: [SCM] gawk branch, gawk-5.1-stable, updated. gawk-4.1.0-4385-g7419129f
Date: Wed, 30 Mar 2022 03:20:36 -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.1-stable has been updated
       via  7419129f87d8c2efaca2a19e1322df431bc9bcbc (commit)
      from  656b5bbec59a3094ae13f3bdac7ae2ef1e2fb5e9 (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=7419129f87d8c2efaca2a19e1322df431bc9bcbc

commit 7419129f87d8c2efaca2a19e1322df431bc9bcbc
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Wed Mar 30 10:20:17 2022 +0300

    Improve delarprm2 test.

diff --git a/test/ChangeLog b/test/ChangeLog
index 27745de9..fa9f9951 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
+2022-03-30         Arnold D. Robbins     <arnold@skeeve.com>
+
+       * delarprm2.awk, delarprm2.ok: Changes to make test more helpful.
+
 2022-03-27         Arnold D. Robbins     <arnold@skeeve.com>
 
        * Makefile.am (EXTRA_DIST): indirectcall3, new test.
diff --git a/test/delarpm2.awk b/test/delarpm2.awk
index ad0ed3df..5454ac3f 100644
--- a/test/delarpm2.awk
+++ b/test/delarpm2.awk
@@ -49,8 +49,13 @@
        BEGIN {
            clear_array(table)
            foo(table)
+           # 3/2022: This was the original. Use of 'k' in the print was
+           # undoubtedly a typo but it helped find a bug, so let's
+           # make it for real
+           # for (key in table)
+           #   print key, table[k]
            for (key in table)
-               print key, table[k]
+               print key, table[key], "<" table[k] ">"
            clear_array(table)
            exit(0)
        }
diff --git a/test/delarpm2.ok b/test/delarpm2.ok
index bea5b8a4..2136aa4e 100644
--- a/test/delarpm2.ok
+++ b/test/delarpm2.ok
@@ -1,2 +1,2 @@
-1 
-2 
+1 one <>
+2 two <>

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

Summary of changes:
 test/ChangeLog    | 4 ++++
 test/delarpm2.awk | 7 ++++++-
 test/delarpm2.ok  | 4 ++--
 3 files changed, 12 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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