This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.24-566-gef83c83


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 "GNU C Library master sources".

The branch, master has been updated
       via  ef83c83a257226d470a939434c7193e2a1fd4f82 (commit)
      from  d2d43afa113eb143303a3d4c1e31194648077642 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=ef83c83a257226d470a939434c7193e2a1fd4f82

commit ef83c83a257226d470a939434c7193e2a1fd4f82
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Fri Dec 30 13:01:44 2016 +0000

    Fix tst-support_record_failure-2 for run-built-tests = no.
    
    The support/tst-support_record_failure-2.out test attempts to run
    built code even if run-built-tests = no, so failing with
    build-many-glibcs.py for all architectures whose code cannot be run on
    the system running the script.  This patch disables the test in that
    case.
    
    Tested for x86_64 (native), and for aarch64 with build-many-glibcs.py.
    
    	* support/Makefile (tests-special): Make definition conditional on
    	[$(run-built-tests) = yes].
    	($(objpfx)tst-support_record_failure-2.out): Make rule conditional
    	on [$(run-built-tests) = yes].

diff --git a/ChangeLog b/ChangeLog
index f188d88..ad20821 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-12-30  Joseph Myers  <joseph@codesourcery.com>
+
+	* support/Makefile (tests-special): Make definition conditional on
+	[$(run-built-tests) = yes].
+	($(objpfx)tst-support_record_failure-2.out): Make rule conditional
+	on [$(run-built-tests) = yes].
+
 2016-12-30  Siddhesh Poyarekar  <siddhesh@sourceware.org>
 
 	* Rules (tests): Add tests-printers-programs to tests to be
diff --git a/support/Makefile b/support/Makefile
index 1bde8bd..4e9d42e 100644
--- a/support/Makefile
+++ b/support/Makefile
@@ -67,6 +67,7 @@ tests = \
   README-testing \
   tst-support_record_failure \
 
+ifeq ($(run-built-tests),yes)
 tests-special = \
   $(objpfx)tst-support_record_failure-2.out
 
@@ -76,5 +77,6 @@ $(objpfx)tst-support_record_failure-2.out: tst-support_record_failure-2.sh \
 	  '$(run-program-env)' '$(test-program-prefix-after-env)' \
 	  > $@; \
 	$(evaluate-test)
+endif
 
 include ../Rules

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

Summary of changes:
 ChangeLog        |    7 +++++++
 support/Makefile |    2 ++
 2 files changed, 9 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]