From 38867c5c1723efa7e42898e1737e1587b5c734e1 Mon Sep 17 00:00:00 2001 From: David Goldblatt Date: Wed, 5 Aug 2020 16:27:50 -0700 Subject: [PATCH] Makefile: alphabetize stress/analyze utilities. --- Makefile.in | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Makefile.in b/Makefile.in index a63f69f1..7140c258 100644 --- a/Makefile.in +++ b/Makefile.in @@ -294,14 +294,15 @@ else CPP_SRCS := TESTS_INTEGRATION_CPP := endif -TESTS_ANALYZE := $(srcroot)test/analyze/rand.c \ - $(srcroot)test/analyze/sizes.c \ - $(srcroot)test/analyze/prof_bias.c -TESTS_STRESS := $(srcroot)test/stress/microbench.c \ +TESTS_ANALYZE := $(srcroot)test/analyze/prof_bias.c \ + $(srcroot)test/analyze/rand.c \ + $(srcroot)test/analyze/sizes.c +TESTS_STRESS := $(srcroot)test/stress/batch_alloc.c \ $(srcroot)test/stress/fill_flush.c \ - $(srcroot)test/stress/large_microbench.c \ $(srcroot)test/stress/hookbench.c \ - $(srcroot)test/stress/batch_alloc.c + $(srcroot)test/stress/large_microbench.c \ + $(srcroot)test/stress/microbench.c + TESTS := $(TESTS_UNIT) $(TESTS_INTEGRATION) $(TESTS_INTEGRATION_CPP) \