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.26-39-g7ee38e6


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  7ee38e6040d34bca96ee668efbbd2f56b446319d (commit)
      from  d5afb38503b20d67348071b9ed105238b8da0e11 (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=7ee38e6040d34bca96ee668efbbd2f56b446319d

commit 7ee38e6040d34bca96ee668efbbd2f56b446319d
Author: Siddhesh Poyarekar <siddhesh@sourceware.org>
Date:   Tue Aug 8 00:44:00 2017 +0530

    benchtests: Use TEST_NAME instead of hardcoding memcpy
    
    The hardcoded 'memcpy' name turns up in other derived tests like
    mempcpy.
    
           * benchtests/bench-memcpy.c (test_main): Use TEST_NAME instead of
           hardcoding memcpy.
           * benchtests/bench-memcpy-large.c (test_name): Likewise.
           * benchtests/bench-memcpy-random.c (test_name): Likewise.

diff --git a/ChangeLog b/ChangeLog
index 908da88..887fc71 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2017-08-07  Siddhesh Poyarekar  <siddhesh@sourceware.org>
+
+	* benchtests/bench-memcpy.c (test_main): Use TEST_NAME instead of
+	hardcoding memcpy.
+	* benchtests/bench-memcpy-large.c (test_name): Likewise.
+	* benchtests/bench-memcpy-random.c (test_name): Likewise.
+
 2017-08-07  Andreas Schwab  <schwab@suse.de>
 
 	* elf/Makefile ($(objpfx)tst-pathopt.out): Redirect output to target.
diff --git a/benchtests/bench-memcpy-large.c b/benchtests/bench-memcpy-large.c
index ae5e819..965edf5 100644
--- a/benchtests/bench-memcpy-large.c
+++ b/benchtests/bench-memcpy-large.c
@@ -118,7 +118,7 @@ test_main (void)
   json_attr_string (&json_ctx, "timing_type", TIMING_TYPE);
 
   json_attr_object_begin (&json_ctx, "functions");
-  json_attr_object_begin (&json_ctx, "memcpy");
+  json_attr_object_begin (&json_ctx, TEST_NAME);
   json_attr_string (&json_ctx, "bench-variant", "large");
 
   json_array_begin (&json_ctx, "ifuncs");
diff --git a/benchtests/bench-memcpy-random.c b/benchtests/bench-memcpy-random.c
index 9c7cc2b..eaffd3c 100644
--- a/benchtests/bench-memcpy-random.c
+++ b/benchtests/bench-memcpy-random.c
@@ -156,7 +156,7 @@ test_main (void)
   json_attr_string (&json_ctx, "timing_type", TIMING_TYPE);
 
   json_attr_object_begin (&json_ctx, "functions");
-  json_attr_object_begin (&json_ctx, "memcpy");
+  json_attr_object_begin (&json_ctx, TEST_NAME);
   json_attr_string (&json_ctx, "bench-variant", "random");
 
   json_array_begin (&json_ctx, "ifuncs");
diff --git a/benchtests/bench-memcpy.c b/benchtests/bench-memcpy.c
index 92ecc64..d80c644 100644
--- a/benchtests/bench-memcpy.c
+++ b/benchtests/bench-memcpy.c
@@ -136,7 +136,7 @@ test_main (void)
   json_attr_string (&json_ctx, "timing_type", TIMING_TYPE);
 
   json_attr_object_begin (&json_ctx, "functions");
-  json_attr_object_begin (&json_ctx, "memcpy");
+  json_attr_object_begin (&json_ctx, TEST_NAME);
   json_attr_string (&json_ctx, "bench-variant", "default");
 
   json_array_begin (&json_ctx, "ifuncs");

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

Summary of changes:
 ChangeLog                        |    7 +++++++
 benchtests/bench-memcpy-large.c  |    2 +-
 benchtests/bench-memcpy-random.c |    2 +-
 benchtests/bench-memcpy.c        |    2 +-
 4 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]