gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2502-g906ac1


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2502-g906ac1a
Date: Wed, 12 Apr 2017 04:44:27 -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, master has been updated
       via  906ac1a525dd0f7ad87bafdaf882323938842760 (commit)
      from  c080fd4c72fffb78d4c06d97a4876a826b24fe56 (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=906ac1a525dd0f7ad87bafdaf882323938842760

commit 906ac1a525dd0f7ad87bafdaf882323938842760
Author: Arnold D. Robbins <address@hidden>
Date:   Wed Apr 12 11:44:15 2017 +0300

    Add new memleak test.

diff --git a/test/ChangeLog b/test/ChangeLog
index d684e73..e191500 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,8 @@
+2017-04-12         Arnold D. Robbins     <address@hidden>
+
+       * Makefile.am (memleak): New test.
+       * memleak.awk, memleak.ok: New files.
+
 2017-03-27         Arnold D. Robbins     <address@hidden>
 
        * fwtest4: Renamed from fwtest3.
diff --git a/test/Makefile.am b/test/Makefile.am
index b1a9762..686f4f0 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -619,6 +619,8 @@ EXTRA_DIST = \
        membug1.awk \
        membug1.in \
        membug1.ok \
+       memleak.awk \
+       memleak.ok \
        messages.awk \
        minusstr.awk \
        minusstr.ok \
@@ -1190,7 +1192,7 @@ BASIC_TESTS = \
        hex hex2 hsprint \
        inpref inputred intest intprec iobug1 \
        leaddig leadnl litoct longsub longwrds \
-       manglprm math membug1 messages minusstr mmap8k mtchi18n \
+       manglprm math membug1 memleak messages minusstr mmap8k mtchi18n \
        nasty nasty2 negexp negrange nested nfldstr nfloop nfneg nfset nlfldsep 
\
        nlinstr nlstrina noeffect nofile nofmtch noloop1 noloop2 nonl \
        noparms nors nulinsrc nulrsend numindex numsubstr \
diff --git a/test/Makefile.in b/test/Makefile.in
index 57f5bf6..fd11ca4 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -877,6 +877,8 @@ EXTRA_DIST = \
        membug1.awk \
        membug1.in \
        membug1.ok \
+       memleak.awk \
+       memleak.ok \
        messages.awk \
        minusstr.awk \
        minusstr.ok \
@@ -1447,7 +1449,7 @@ BASIC_TESTS = \
        hex hex2 hsprint \
        inpref inputred intest intprec iobug1 \
        leaddig leadnl litoct longsub longwrds \
-       manglprm math membug1 messages minusstr mmap8k mtchi18n \
+       manglprm math membug1 memleak messages minusstr mmap8k mtchi18n \
        nasty nasty2 negexp negrange nested nfldstr nfloop nfneg nfset nlfldsep 
\
        nlinstr nlstrina noeffect nofile nofmtch noloop1 noloop2 nonl \
        noparms nors nulinsrc nulrsend numindex numsubstr \
@@ -3324,6 +3326,11 @@ membug1:
        @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
+memleak:
+       @echo $@
+       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  >_$@ 2>&1 || echo EXIT 
CODE: $$? >>_$@
+       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
+
 minusstr:
        @echo $@
        @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  >_$@ 2>&1 || echo EXIT 
CODE: $$? >>_$@
diff --git a/test/Maketests b/test/Maketests
index 9ff8ef9..a13c83e 100644
--- a/test/Maketests
+++ b/test/Maketests
@@ -505,6 +505,11 @@ membug1:
        @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  < 
"$(srcdir)"/address@hidden >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
        @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
 
+memleak:
+       @echo $@
+       @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  >_$@ 2>&1 || echo EXIT 
CODE: $$? >>_$@
+       @-$(CMP) "$(srcdir)"/address@hidden _$@ && rm -f _$@
+
 minusstr:
        @echo $@
        @AWKPATH="$(srcdir)" $(AWK) -f address@hidden  >_$@ 2>&1 || echo EXIT 
CODE: $$? >>_$@
diff --git a/test/memleak.ok b/test/memleak.ok
new file mode 100644
index 0000000..3a05c8b
--- /dev/null
+++ b/test/memleak.ok
@@ -0,0 +1 @@
+30000

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

Summary of changes:
 test/ChangeLog   | 5 +++++
 test/Makefile.am | 4 +++-
 test/Makefile.in | 9 ++++++++-
 test/Maketests   | 5 +++++
 test/memleak.ok  | 1 +
 5 files changed, 22 insertions(+), 2 deletions(-)
 create mode 100644 test/memleak.ok


hooks/post-receive
-- 
gawk



reply via email to

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