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.22-665-g67fc563


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  67fc563718f00c690b5be579f7282ee60d7db749 (commit)
      from  e42ce0f45ebf20b4c6f89da605cd62b1cd60a9df (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=67fc563718f00c690b5be579f7282ee60d7db749

commit 67fc563718f00c690b5be579f7282ee60d7db749
Author: Carlos O'Donell <carlos@systemhalted.org>
Date:   Wed Jan 13 11:00:57 2016 -0500

    Use $(PYTHON) to run benchtests python files.

diff --git a/ChangeLog b/ChangeLog
index 025db2b..2c261ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2016-01-13  Carlos O'Donell  <carlos@redhat.com>
+
+	* benchtests/Makefile (PYTHON): Define.
+	(bench-func): Use $(PYTHON) to run python scripts.
+	($(objpfx)bench-%.c): Likewise.
+
 2016-01-13  Flavio Cruz  <flaviocruz@gmail.com>
 
 	* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Do not remove
diff --git a/benchtests/Makefile b/benchtests/Makefile
index 674d313..2b553f8 100644
--- a/benchtests/Makefile
+++ b/benchtests/Makefile
@@ -15,10 +15,11 @@
 # License along with the GNU C Library; if not, see
 # <http://www.gnu.org/licenses/>.
 
-
 # Makefile for benchmark tests.  The only useful target here is `bench`.
 # Add benchmark functions in alphabetical order.
 
+PYTHON := python
+
 subdir := benchtests
 
 include ../Makeconfig
@@ -164,7 +165,7 @@ bench-func: $(binaries-bench)
 	  mv -f $(objpfx)bench.out $(objpfx)bench.out.old; \
 	fi; \
 	mv -f $(objpfx)bench.out-tmp $(objpfx)bench.out
-	scripts/validate_benchout.py $(objpfx)bench.out \
+	$(PYTHON) scripts/validate_benchout.py $(objpfx)bench.out \
 		scripts/benchout.schema.json
 
 $(timing-type) $(binaries-bench) $(binaries-benchset) \
@@ -177,5 +178,5 @@ $(objpfx)bench-%.c: %-inputs $(bench-deps)
 	{ if [ -n "$($*-INCLUDE)" ]; then \
 	  cat $($*-INCLUDE); \
 	fi; \
-	scripts/bench.py $(patsubst %-inputs,%,$<); } > $@-tmp
+	$(PYTHON) scripts/bench.py $(patsubst %-inputs,%,$<); } > $@-tmp
 	mv -f $@-tmp $@

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

Summary of changes:
 ChangeLog           |    6 ++++++
 benchtests/Makefile |    7 ++++---
 2 files changed, 10 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]