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 hjl/ifunc/test updated. glibc-2.16-ports-merge-424-gfb8d00f


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, hjl/ifunc/test has been updated
       via  fb8d00fc92e2b11b6ed7fc3a3672cc0ade5dca36 (commit)
      from  a4db001ee8bd6e34789d2cb107c2b6c38513c20b (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=fb8d00fc92e2b11b6ed7fc3a3672cc0ade5dca36

commit fb8d00fc92e2b11b6ed7fc3a3672cc0ade5dca36
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Mon Sep 24 07:23:20 2012 -0700

    Filter out ifunc tests before "others"

diff --git a/ChangeLog.test-ifunc b/ChangeLog.test-ifunc
index e930fc6..3970be4 100644
--- a/ChangeLog.test-ifunc
+++ b/ChangeLog.test-ifunc
@@ -1,3 +1,9 @@
+2012-09-24  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* Rules (binaries-ifunc-tests): Moved before "others".
+	(tests): Likewise.
+	(xtests): Likewise.
+
 2012-09-23  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* Rules (binaries-ifunc-tests): Cleared if multi-arch isn't
diff --git a/Rules b/Rules
index e44fd26..93c9163 100644
--- a/Rules
+++ b/Rules
@@ -84,6 +84,14 @@ common-generated += dummy.o dummy.c
 # This makes all the auxiliary and test programs.
 
 .PHONY: others tests
+ifeq ($(multi-arch),yes)
+binaries-ifunc-tests = $(tests-ifunc) $(xtests-ifunc)
+else
+binaries-ifunc-tests =
+tests := $(filter-out $(tests-ifunc), $(tests))
+xtests := $(filter-out $(xtests-ifunc), $(xtests))
+endif
+
 ifeq ($(build-programs),yes)
 others: $(addprefix $(objpfx),$(others) $(sysdep-others) $(extra-objs))
 else
@@ -124,17 +132,13 @@ binaries-pie =
 endif
 
 ifeq ($(multi-arch),yes)
-binaries-ifunc-tests = $(tests-ifunc) $(xtests-ifunc)
 binaries-static-ifunc-tests = $(filter $(binaries-ifunc-tests), \
 				       $(binaries-static-tests))
 binaries-shared-ifunc-tests = $(filter-out $(binaries-static-ifunc-tests), \
 					   $(binaries-ifunc-tests))
 else
-binaries-ifunc-tests =
 binaries-static-ifunc-tests =
 binaries-shared-ifunc-tests =
-tests := $(filter-out $(tests-ifunc), $(tests))
-xtests := $(filter-out $(xtests-ifunc), $(xtests))
 endif
 
 binaries-shared-tests = $(filter-out $(binaries-pie) $(binaries-static) \

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

Summary of changes:
 ChangeLog.test-ifunc |    6 ++++++
 Rules                |   12 ++++++++----
 2 files changed, 14 insertions(+), 4 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]