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-5435-g9fda97bc


From: Arnold Robbins
Subject: [SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5435-g9fda97bc
Date: Sat, 2 Dec 2023 15:15:00 -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, gawk-5.3-stable has been updated
       via  9fda97bc4a6706a655edd3e1e42839debd219045 (commit)
      from  8fd6d7b2f5b8977dfb74dd38d5703a3ccd159ee4 (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=9fda97bc4a6706a655edd3e1e42839debd219045

commit 9fda97bc4a6706a655edd3e1e42839debd219045
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Sat Dec 2 22:00:58 2023 +0200

    Add the actual debugger array printing test files.

diff --git a/test/dbugarray1.awk b/test/dbugarray1.awk
new file mode 100644
index 00000000..190ea209
--- /dev/null
+++ b/test/dbugarray1.awk
@@ -0,0 +1,6 @@
+BEGIN {
+       a[1] = 1
+       a[2] = 2
+       b[1][2][3] = 123
+       b[2][2][3] = 223
+}
diff --git a/test/dbugarray1.in b/test/dbugarray1.in
new file mode 100644
index 00000000..cd4bbf37
--- /dev/null
+++ b/test/dbugarray1.in
@@ -0,0 +1,6 @@
+run
+print a
+print @a
+print b
+print @b
+quit
diff --git a/test/dbugarray1.ok b/test/dbugarray1.ok
new file mode 100644
index 00000000..984e4db5
--- /dev/null
+++ b/test/dbugarray1.ok
@@ -0,0 +1,8 @@
+Starting program:
+Program exited normally with exit value: 0
+a = array, 2 elements
+a["1"] = 1
+a["2"] = 2
+b = array, 2 elements
+b["1"]["2"]["3"] = 123
+b["2"]["2"]["3"] = 223

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

Summary of changes:
 test/dbugarray1.awk | 6 ++++++
 test/dbugarray1.in  | 6 ++++++
 test/dbugarray1.ok  | 8 ++++++++
 3 files changed, 20 insertions(+)
 create mode 100644 test/dbugarray1.awk
 create mode 100644 test/dbugarray1.in
 create mode 100644 test/dbugarray1.ok


hooks/post-receive
-- 
gawk



reply via email to

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