summaryrefslogtreecommitdiffstats
path: root/cpukit/libtest
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-11-11 11:27:50 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-11-19 08:39:02 +0100
commitd2bc5945d35f4eebe1f9202406b147ce97f0efd3 (patch)
treeaf5584e54eb1d2ab28b6240dd546639714d5e544 /cpukit/libtest
parentlibtest: Add primitive test case memory allocator (diff)
downloadrtems-d2bc5945d35f4eebe1f9202406b147ce97f0efd3.tar.bz2
libtest: Rename ValidCache in FullCache
This name better reflects the execution envirnoment in which the cache is fully loaded with valid data unrelated to the body request handler.
Diffstat (limited to 'cpukit/libtest')
-rw-r--r--cpukit/libtest/t-test-rtems-measure.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/libtest/t-test-rtems-measure.c b/cpukit/libtest/t-test-rtems-measure.c
index ea3f0ab3e2..0607312701 100644
--- a/cpukit/libtest/t-test-rtems-measure.c
+++ b/cpukit/libtest/t-test-rtems-measure.c
@@ -478,7 +478,7 @@ get_maximum_retries(const T_measure_runtime_request *req)
}
static void
-measure_valid_cache(T_measure_runtime_context *ctx,
+measure_full_cache(T_measure_runtime_context *ctx,
const T_measure_runtime_request *req)
{
size_t sample_count;
@@ -488,7 +488,7 @@ measure_valid_cache(T_measure_runtime_context *ctx,
size_t i;
T_time begin;
- measure_variant_begin(req->name, "ValidCache");
+ measure_variant_begin(req->name, "FullCache");
begin = T_now();
sample_count = ctx->sample_count;
samples = ctx->samples;
@@ -803,11 +803,11 @@ T_measure_runtime(T_measure_runtime_context *ctx,
const T_measure_runtime_request *req)
{
/*
- * Do ValidCache variant before HotCache to get a good overall cache
+ * Do FullCache variant before HotCache to get a good overall cache
* state for the HotCache variant.
*/
- if ((req->flags & T_MEASURE_RUNTIME_DISABLE_VALID_CACHE) == 0) {
- measure_valid_cache(ctx, req);
+ if ((req->flags & T_MEASURE_RUNTIME_DISABLE_FULL_CACHE) == 0) {
+ measure_full_cache(ctx, req);
}
if ((req->flags & T_MEASURE_RUNTIME_DISABLE_HOT_CACHE) == 0) {