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-563-g31cd054


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  31cd0548168e87ecfba01cc33e9609ac2b95b70f (commit)
      from  a9b0101475c9894f210e20efa9738eba56d33f19 (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=31cd0548168e87ecfba01cc33e9609ac2b95b70f

commit 31cd0548168e87ecfba01cc33e9609ac2b95b70f
Author: Siddhesh Poyarekar <siddhesh@sourceware.org>
Date:   Fri Dec 30 09:42:38 2016 +0530

    Fix pretty printer tests for run-built-tests == no
    
    In my change to add configure tests for python I had a brainfart where
    I tried to filter out unsupported tests from tests-printers-programs
    instead of tests-printers to select tests to build.  I realize now
    that all of that is completely unnecessary and it would be safe to
    just build the tests as long as we don't try to run it.
    
    This patch reverts that bit of the change.  Tested with
    run-built-tests = no in config.make.
    
    	* Rules (tests): Add tests-printers-programs to tests to be
    	built.

diff --git a/ChangeLog b/ChangeLog
index 60b905d..f188d88 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-12-30  Siddhesh Poyarekar  <siddhesh@sourceware.org>
+
+	* Rules (tests): Add tests-printers-programs to tests to be
+	built.
+
 2016-12-28  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	* sysvipc/Makefile (tests): Add test-sysvshm.
diff --git a/Rules b/Rules
index 558924d..3195f59 100644
--- a/Rules
+++ b/Rules
@@ -129,9 +129,9 @@ endif
 others: $(py-const)
 
 ifeq ($(run-built-tests),no)
-tests: $(addprefix $(objpfx),$(filter-out $(tests-unsupported),$(tests) \
-			       $(tests-printers-programs)) \
-			     $(test-srcs)) $(tests-special)
+tests: $(addprefix $(objpfx),$(filter-out $(tests-unsupported),$(tests)) \
+			     $(test-srcs)) $(tests-special) \
+			     $(tests-printers-programs)
 xtests: tests $(xtests-special)
 else
 tests: $(tests:%=$(objpfx)%.out) $(tests-special) $(tests-printers-out)

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

Summary of changes:
 ChangeLog |    5 +++++
 Rules     |    6 +++---
 2 files changed, 8 insertions(+), 3 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]