From 2c70e8d3513edc5417a1fa6808350083e5c40f7d Mon Sep 17 00:00:00 2001 From: Alex Lapenkou Date: Mon, 25 Oct 2021 20:19:08 -0700 Subject: [PATCH] Rename 'arena_decay' to 'arena_util' While initially this file contained helper functions for one particular test, now its usage spread across different test files. Purpose has shifted towards a collection of handy arena ctl wrappers. --- test/include/test/{arena_decay.h => arena_util.h} | 0 test/unit/arena_decay.c | 2 +- test/unit/san.c | 2 +- test/unit/san_bump.c | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename test/include/test/{arena_decay.h => arena_util.h} (100%) diff --git a/test/include/test/arena_decay.h b/test/include/test/arena_util.h similarity index 100% rename from test/include/test/arena_decay.h rename to test/include/test/arena_util.h diff --git a/test/unit/arena_decay.c b/test/unit/arena_decay.c index bbfd23a5..e991f4dd 100644 --- a/test/unit/arena_decay.c +++ b/test/unit/arena_decay.c @@ -1,5 +1,5 @@ #include "test/jemalloc_test.h" -#include "test/arena_decay.h" +#include "test/arena_util.h" #include "jemalloc/internal/ticker.h" diff --git a/test/unit/san.c b/test/unit/san.c index eb9ff517..0daa282b 100644 --- a/test/unit/san.c +++ b/test/unit/san.c @@ -1,5 +1,5 @@ #include "test/jemalloc_test.h" -#include "test/arena_decay.h" +#include "test/arena_util.h" #include "test/san.h" #include "jemalloc/internal/san.h" diff --git a/test/unit/san_bump.c b/test/unit/san_bump.c index fbee53e5..cafa37fe 100644 --- a/test/unit/san_bump.c +++ b/test/unit/san_bump.c @@ -1,5 +1,5 @@ #include "test/jemalloc_test.h" -#include "test/arena_decay.h" +#include "test/arena_util.h" #include "jemalloc/internal/arena_structs.h" #include "jemalloc/internal/san_bump.h"