[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. 47f2bd34643ceda78773e5a
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. 47f2bd34643ceda78773e5abbfa466c2f898a815 |
Date: |
Tue, 11 Sep 2012 19:12:08 +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 47f2bd34643ceda78773e5abbfa466c2f898a815 (commit)
from c6cf44eef1b7c80f4dbdaa74eddbf7a67636f84f (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=47f2bd34643ceda78773e5abbfa466c2f898a815
commit 47f2bd34643ceda78773e5abbfa466c2f898a815
Author: Arnold D. Robbins <address@hidden>
Date: Tue Sep 11 22:11:32 2012 +0300
Only run shlib tests on systems that support them.
diff --git a/test/ChangeLog b/test/ChangeLog
index 135251a..ff99236 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,9 @@
+2012-09-11 Arnold D. Robbins <address@hidden>
+
+ * Makefile.am (shlib-tests): Check if DYNAMIC is enabled and
+ only if so run the tests. A bit hacky. Needed at least for
+ z/OS.
+
2012-09-07 Arnold D. Robbins <address@hidden>
* readdir.awk: Change argument to readdir_do_ftype().
diff --git a/test/Makefile.am b/test/Makefile.am
index 60b50a8..962ab6b 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -985,7 +985,13 @@ machine-tests: $(MACHINE_TESTS)
mpfr-tests: $(MPFR_TESTS)
-shlib-tests: $(SHLIB_TESTS)
+shlib-tests:
+ @if grep 'DYNAMIC 1' $(top_srcdir)/config.h > /dev/null ; then \
+ $(MAKE) shlib-real-tests ; \
+ else echo shlib tests not supported on this system ; \
+ fi
+
+shlib-real-tests: $(SHLIB_TESTS)
msg::
@echo ''
diff --git a/test/Makefile.in b/test/Makefile.in
index 4cda1d4..cc8091a 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1369,7 +1369,13 @@ machine-tests: $(MACHINE_TESTS)
mpfr-tests: $(MPFR_TESTS)
-shlib-tests: $(SHLIB_TESTS)
+shlib-tests:
+ @if grep 'DYNAMIC 1' $(top_srcdir)/config.h > /dev/null ; then \
+ $(MAKE) shlib-real-tests ; \
+ else echo shlib tests not supported on this system ; \
+ fi
+
+shlib-real-tests: $(SHLIB_TESTS)
msg::
@echo ''
-----------------------------------------------------------------------
Summary of changes:
test/ChangeLog | 6 ++++++
test/Makefile.am | 8 +++++++-
test/Makefile.in | 8 +++++++-
3 files changed, 20 insertions(+), 2 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. 47f2bd34643ceda78773e5abbfa466c2f898a815,
Arnold Robbins <=