From d8cea8756242a3a50dde4baf4fb8bf38eddac55d Mon Sep 17 00:00:00 2001 From: Yinan Zhang Date: Thu, 25 Jun 2020 09:38:23 -0700 Subject: [PATCH] Move size inspections to test/analyze --- Makefile.in | 6 +++--- test/{stress => analyze}/sizes.c | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename test/{stress => analyze}/sizes.c (100%) diff --git a/Makefile.in b/Makefile.in index 4a0ef874..1c9e4004 100644 --- a/Makefile.in +++ b/Makefile.in @@ -287,12 +287,12 @@ else CPP_SRCS := TESTS_INTEGRATION_CPP := endif -TESTS_ANALYZE := $(srcroot)test/analyze/rand.c +TESTS_ANALYZE := $(srcroot)test/analyze/rand.c \ + $(srcroot)test/analyze/sizes.c TESTS_STRESS := $(srcroot)test/stress/microbench.c \ $(srcroot)test/stress/fill_flush.c \ $(srcroot)test/stress/large_microbench.c \ - $(srcroot)test/stress/hookbench.c \ - $(srcroot)test/stress/sizes.c + $(srcroot)test/stress/hookbench.c TESTS := $(TESTS_UNIT) $(TESTS_INTEGRATION) $(TESTS_INTEGRATION_CPP) \ diff --git a/test/stress/sizes.c b/test/analyze/sizes.c similarity index 100% rename from test/stress/sizes.c rename to test/analyze/sizes.c