[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. f876eae297cf4ce7f6605d0
From: |
Eli Zaretskii |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. f876eae297cf4ce7f6605d021bc61d1ae8c5f4e9 |
Date: |
Mon, 29 Apr 2013 16:11:40 +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 f876eae297cf4ce7f6605d021bc61d1ae8c5f4e9 (commit)
from e88a6bcbaf9f0b131c31dfb30cef52ba8f74adb8 (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=f876eae297cf4ce7f6605d021bc61d1ae8c5f4e9
commit f876eae297cf4ce7f6605d021bc61d1ae8c5f4e9
Author: Eli Zaretskii <address@hidden>
Date: Mon Apr 29 19:07:15 2013 +0300
More fixes for pc/Makefile.tst.
pc/Makefile.tst (mpfr-tests, shlib-tests, rsnulbig, rsnulbig2):
Insert a space between ' and the following / to prevent MSYS Bash
from interpreting that as a Unix-style file name.
diff --git a/pc/ChangeLog b/pc/ChangeLog
index 788002e..cd8a6db 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,9 @@
+2013-04-29 Eli Zaretskii <address@hidden>
+
+ * Makefile.tst (mpfr-tests, shlib-tests, rsnulbig, rsnulbig2):
+ Insert a space between ' and the following / to prevent MSYS Bash
+ from interpreting that as a Unix-style file name.
+
2013-04-28 Eli Zaretskii <address@hidden>
* Makefile.tst (top_srcdir): Define. This avoids failure in a few
diff --git a/pc/Makefile.tst b/pc/Makefile.tst
index 76b8a86..78ad5ad 100644
--- a/pc/Makefile.tst
+++ b/pc/Makefile.tst
@@ -259,13 +259,13 @@ inet: inetmesg $(INET_TESTS)
machine-tests: $(MACHINE_TESTS)
mpfr-tests:
- @if $(AWK) --version | $(AWK) '/MPFR/ { exit 1 }' ; then \
+ @if $(AWK) --version | $(AWK) ' /MPFR/ { exit 1 }' ; then \
echo MPFR tests not supported on this system ; \
else $(MAKE) $(MPFR_TESTS) ; \
fi
shlib-tests:
- @if $(AWK) --version | $(AWK) '/API/ { exit 1 }' ; then \
+ @if $(AWK) --version | $(AWK) ' /API/ { exit 1 }' ; then \
echo shlib tests not supported on this system ; \
else $(MAKE) shlib-real-tests ; \
fi
@@ -593,7 +593,7 @@ rsnulbig::
@ : Suppose that block size for pipe is at most 128kB:
@$(AWK) 'BEGIN { for (i = 1; i <= 128*64+1; i++) print
"abcdefgh123456\n" }' 2>&1 | \
$(AWK) 'BEGIN { RS = ""; ORS = "\n\n" }; { print }' 2>&1 | \
- $(AWK) '/^[^a]/; END{ print NR }' >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+ $(AWK) ' /^[^a]/; END{ print NR }' >_$@ 2>&1 || echo EXIT CODE: $$?
>>_$@
@-$(CMP) $(srcdir)/address@hidden _$@ && rm -f _$@
rsnulbig2::
@@ -601,7 +601,7 @@ rsnulbig2::
@$(AWK) 'BEGIN { ORS = ""; n = "\n"; for (i = 1; i <= 10; i++) n = (n
n); \
for (i = 1; i <= 128; i++) print n; print "abc\n" }' 2>&1 | \
$(AWK) 'BEGIN { RS = ""; ORS = "\n\n" };{ print }' 2>&1 | \
- $(AWK) '/^[^a]/; END { print NR }' >_$@ 2>&1 || echo EXIT CODE:
$$? >>_$@
+ $(AWK) ' /^[^a]/; END { print NR }' >_$@ 2>&1 || echo EXIT
CODE: $$? >>_$@
@-$(CMP) $(srcdir)/address@hidden _$@ && rm -f _$@
wideidx::
-----------------------------------------------------------------------
Summary of changes:
pc/ChangeLog | 6 ++++++
pc/Makefile.tst | 8 ++++----
2 files changed, 10 insertions(+), 4 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. f876eae297cf4ce7f6605d021bc61d1ae8c5f4e9,
Eli Zaretskii <=