diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | benchtests/Makefile | 4 | ||||
-rw-r--r-- | benchtests/bench-malloc-thread.c | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2019-04-24 Wilco Dijkstra <wdijkstr@arm.com> + + * benchtests/Makefile (BENCH_DURATION): Set to 1 second. + * benchtests/bench-malloc-thread.c (BENCH_DURATION): Set to 10 seconds. + 2019-04-24 Mike Frysinger <vapier@gentoo.org> [BZ #18465] diff --git a/benchtests/Makefile b/benchtests/Makefile index cdc8948..c9dca7e 100644 --- a/benchtests/Makefile +++ b/benchtests/Makefile @@ -120,9 +120,9 @@ binaries-bench := $(addprefix $(objpfx)bench-,$(bench)) binaries-benchset := $(addprefix $(objpfx)bench-,$(benchset)) binaries-bench-malloc := $(addprefix $(objpfx)bench-,$(bench-malloc)) -# The default duration: 10 seconds. +# The default duration: 1 seconds. ifndef BENCH_DURATION -BENCH_DURATION := 10 +BENCH_DURATION := 1 endif CPPFLAGS-nonlib += -DDURATION=$(BENCH_DURATION) -D_ISOMAC diff --git a/benchtests/bench-malloc-thread.c b/benchtests/bench-malloc-thread.c index 5226142..9d7dcf2 100644 --- a/benchtests/bench-malloc-thread.c +++ b/benchtests/bench-malloc-thread.c @@ -31,7 +31,7 @@ #include "json-lib.h" /* Benchmark duration in seconds. */ -#define BENCHMARK_DURATION 60 +#define BENCHMARK_DURATION 10 #define RAND_SEED 88 #ifndef NUM_THREADS |