From fec799f823100646f535c5e24128c648cba4c2c5 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Tue, 4 Jun 2013 18:11:43 +0530 Subject: Remove performance-related bits from string tests --- string/test-memccpy.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'string/test-memccpy.c') diff --git a/string/test-memccpy.c b/string/test-memccpy.c index 577a82efe0..a3f20a8c48 100644 --- a/string/test-memccpy.c +++ b/string/test-memccpy.c @@ -74,24 +74,6 @@ do_one_test (impl_t *impl, void *dst, const void *src, int c, size_t len, ret = 1; return; } - - if (HP_TIMING_AVAIL) - { - hp_timing_t start __attribute__ ((unused)); - hp_timing_t stop __attribute__ ((unused)); - hp_timing_t best_time = ~ (hp_timing_t) 0; - size_t i; - - for (i = 0; i < 32; ++i) - { - HP_TIMING_NOW (start); - CALL (impl, dst, src, c, n); - HP_TIMING_NOW (stop); - HP_TIMING_BEST (best_time, start, stop); - } - - printf ("\t%zd", (size_t) best_time); - } } static void @@ -122,14 +104,8 @@ do_test (size_t align1, size_t align2, int c, size_t len, size_t n, for (i = len; i + align1 < page_size && i < len + 64; ++i) s1[i] = 32 + 32 * i % (max_char - 32); - if (HP_TIMING_AVAIL) - printf ("Length %4zd, n %4zd, char %d, alignment %2zd/%2zd:", len, n, c, align1, align2); - FOR_EACH_IMPL (impl, 0) do_one_test (impl, s2, s1, c, len, n); - - if (HP_TIMING_AVAIL) - putchar ('\n'); } static void -- cgit v1.2.1