aboutsummaryrefslogtreecommitdiffstats
path: root/test/delarpm2.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/delarpm2.awk')
-rw-r--r--test/delarpm2.awk7
1 files changed, 6 insertions, 1 deletions
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)
}