mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Remove performance-related bits from string tests
This commit is contained in:
@ -53,7 +53,6 @@ extern impl_t __start_impls[], __stop_impls[];
|
||||
#include <ifunc-impl-list.h>
|
||||
#define GL(x) _##x
|
||||
#define GLRO(x) _##x
|
||||
#include <hp-timing.h>
|
||||
|
||||
|
||||
# define TEST_FUNCTION test_main ()
|
||||
@ -67,8 +66,6 @@ int ret, do_srandom;
|
||||
unsigned int seed;
|
||||
size_t page_size;
|
||||
|
||||
hp_timing_t _dl_hp_timing_overhead;
|
||||
|
||||
# ifndef ITERATIONS
|
||||
size_t iterations = 100000;
|
||||
# define ITERATIONS_OPTIONS \
|
||||
@ -159,16 +156,6 @@ static impl_t *impl_array;
|
||||
if (!notall || impl->test)
|
||||
#endif
|
||||
|
||||
#define HP_TIMING_BEST(best_time, start, end) \
|
||||
do \
|
||||
{ \
|
||||
hp_timing_t tmptime; \
|
||||
HP_TIMING_DIFF (tmptime, start + _dl_hp_timing_overhead, end); \
|
||||
if (best_time > tmptime) \
|
||||
best_time = tmptime; \
|
||||
} \
|
||||
while (0)
|
||||
|
||||
#ifndef BUF1PAGES
|
||||
# define BUF1PAGES 1
|
||||
#endif
|
||||
@ -199,7 +186,6 @@ test_init (void)
|
||||
error (EXIT_FAILURE, errno, "mmap failed");
|
||||
if (mprotect (buf2 + page_size, page_size, PROT_NONE))
|
||||
error (EXIT_FAILURE, errno, "mprotect failed");
|
||||
HP_TIMING_DIFF_INIT ();
|
||||
if (do_srandom)
|
||||
{
|
||||
printf ("Setting seed to 0x%x\n", seed);
|
||||
|
Reference in New Issue
Block a user