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. 94890fcc0514fb5704320c5


From: Andrew J. Schorr
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. 94890fcc0514fb5704320c504ce2215678ebc307
Date: Mon, 14 Jan 2013 18:49:14 +0000

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  94890fcc0514fb5704320c504ce2215678ebc307 (commit)
      from  0bd22a097fcde68cf8586e8737ac7ad8f4286669 (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=94890fcc0514fb5704320c504ce2215678ebc307

commit 94890fcc0514fb5704320c504ce2215678ebc307
Author: Andrew J. Schorr <address@hidden>
Date:   Mon Jan 14 13:49:01 2013 -0500

    Fix symtab8 test to work when building outside the source tree.

diff --git a/test/ChangeLog b/test/ChangeLog
index 914a0fd..4ed39af 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,9 @@
+2013-01-14         Andrew J. Schorr     <address@hidden>
+
+       * Makefile.am (symtab8): Use grep to remove FILENAME from the output
+       so the test will succeed when building outside the source tree.
+       * symtab8.ok: Remove FILENAME.
+
 2013-01-10         Andrew J. Schorr     <address@hidden>
 
        * inplace.1.in, inplace.2.in, inplace.in, inplace1.1.ok, inplace1.2.ok,
diff --git a/test/Makefile.am b/test/Makefile.am
index 7a541f9..c604ebb 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1757,7 +1757,7 @@ symtab6:
 symtab8:
        @echo $@
        @$(AWK) -d__$@ -f $(srcdir)/address@hidden $(srcdir)/address@hidden >_$@
-       @grep -v '^ENVIRON' __$@ | grep -v '^PROCINFO' >> _$@ ; rm __$@
+       @grep -v '^ENVIRON' __$@ | grep -v '^PROCINFO' | grep -v '^FILENAME' >> 
_$@ ; rm __$@
        @-$(CMP) $(srcdir)/address@hidden _$@ && rm -f _$@
 
 # Targets generated for other tests:
diff --git a/test/Makefile.in b/test/Makefile.in
index 52d8edc..274dcdb 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -2138,7 +2138,7 @@ symtab6:
 symtab8:
        @echo $@
        @$(AWK) -d__$@ -f $(srcdir)/address@hidden $(srcdir)/address@hidden >_$@
-       @grep -v '^ENVIRON' __$@ | grep -v '^PROCINFO' >> _$@ ; rm __$@
+       @grep -v '^ENVIRON' __$@ | grep -v '^PROCINFO' | grep -v '^FILENAME' >> 
_$@ ; rm __$@
        @-$(CMP) $(srcdir)/address@hidden _$@ && rm -f _$@
 Gt-dummy:
 # file Maketests, generated from Makefile.am by the Gentests program
diff --git a/test/symtab8.ok b/test/symtab8.ok
index 8560c75..724f374 100644
--- a/test/symtab8.ok
+++ b/test/symtab8.ok
@@ -6,7 +6,6 @@ BINMODE: 0
 CONVFMT: "%.6g"
 ERRNO: ""
 FIELDWIDTHS: ""
-FILENAME: "./symtab8.in"
 FNR: 1
 FPAT: "[^[:space:]]+"
 FS: " "

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

Summary of changes:
 test/ChangeLog   |    6 ++++++
 test/Makefile.am |    2 +-
 test/Makefile.in |    2 +-
 test/symtab8.ok  |    1 -
 4 files changed, 8 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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