diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-23 08:34:49 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-08-23 08:34:49 +0300 |
commit | 90e72f956e2e0878ca2dfc9e2a394c2e25c799d8 (patch) | |
tree | e26f105c828853fb8e6216c7af222d4e83277748 | |
parent | 79bdf495760451af2b7f7ef209d5f4c82e9929fa (diff) | |
download | egawk-90e72f956e2e0878ca2dfc9e2a394c2e25c799d8.tar.gz egawk-90e72f956e2e0878ca2dfc9e2a394c2e25c799d8.tar.bz2 egawk-90e72f956e2e0878ca2dfc9e2a394c2e25c799d8.zip |
Fix removing testext.tmp file in test suite.
-rw-r--r-- | pc/ChangeLog | 4 | ||||
-rw-r--r-- | pc/Makefile.tst | 2 | ||||
-rw-r--r-- | test/ChangeLog | 6 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
5 files changed, 12 insertions, 4 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 2e3a268d..455bd321 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,7 @@ +2017-08-23 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (testext): Fix spelling of testexttmp.txt. + 2017-08-21 Eli Zaretskii <eliz@gnu.org> * Makefile.tst (testext): Remove textexttmp.txt. diff --git a/pc/Makefile.tst b/pc/Makefile.tst index 8a74e31c..0bb073d0 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -1166,7 +1166,7 @@ testext:: # @$(AWK) '/^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > testext.awk @$(AWK) ' /^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > testext.awk @$(AWK) -f ./testext.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ testext.awk textexttmp.txt + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ testext.awk testexttmp.txt getfile: @echo $@ diff --git a/test/ChangeLog b/test/ChangeLog index a015ebfe..756386af 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,4 +1,8 @@ -2017-08-21 Eli Zaretskii <eliz@gnu.org> +2017-08-23 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (testext): Fix spelling of testexttmp.txt. + +2017-08-21 Eli Zaretskii <eliz@gnu.org> * Makefile.am (testext): Remove textexttmp.txt. diff --git a/test/Makefile.am b/test/Makefile.am index b2577841..99b9fade 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2209,7 +2209,7 @@ testext:: @echo $@ @$(AWK) '/^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > testext.awk @$(AWK) -f ./testext.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ testext.awk textexttmp.txt + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ testext.awk testexttmp.txt getfile: @echo $@ diff --git a/test/Makefile.in b/test/Makefile.in index ec3bb963..7493f439 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2648,7 +2648,7 @@ testext:: @echo $@ @$(AWK) '/^(@load|BEGIN)/,/^}/' "$(top_srcdir)"/extension/testext.c > testext.awk @$(AWK) -f ./testext.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ testext.awk textexttmp.txt + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ testext.awk testexttmp.txt getfile: @echo $@ |