From 07a2ddb7d357f10f79c3e3c8f20977d2285250ed Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Tue, 5 May 2026 12:07:45 +0200 Subject: [PATCH] docs/Tutorial: Update file name of example after rename Following the tutorial, the example command fails: $ ./run-mmtests.sh --config configs/config-memdb-redis-small BASELINE A config must be in the current directory or specified with --config File configs/config-memdb-redis-small not found The config file was renamed twice: 1. commit baad37235cc1c6c6f5b347227dde51209e276213 (redis-memtier: Prototype support and reconcile with redis-benchmark), Mon Feb 7 17:24:12 2022 +0000 configs/{config-memdb-redis-small => config-memdb-redis-benchmark} | 7 ++++--- 2. commit bb77b0418a5976468204d75c88a465d424369a86 (redis: Adjust sizing parameters for runtime length), Thu Jul 13 15:12:23 2023 +0100 configs/{config-memdb-redis-benchmark => config-memdb-redis-benchmark-small} So, update the file name in the tutorial. Signed-off-by: Paul Menzel --- docs/Tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Tutorial.md b/docs/Tutorial.md index 0e752cebb..f0b55fbce 100644 --- a/docs/Tutorial.md +++ b/docs/Tutorial.md @@ -16,7 +16,7 @@ git clone https://github.com/gormanm/mmtests.git Pick a config and start a run. For instance, let's run a Redis benchmark. ``` -sudo ./run-mmtests.sh --config configs/config-memdb-redis-small BASELINE +sudo ./run-mmtests.sh --config configs/config-memdb-redis-benchmark-small BASELINE ``` ### Comparison Run @@ -26,7 +26,7 @@ variation, let's add some disturbing tasks. ``` for i in `seq 1 8`; do yes &> /dev/null & done -sudo ./run-mmtests.sh --config configs/config-memdb-redis-small BUSY +sudo ./run-mmtests.sh --config configs/config-memdb-redis-benchmark-small BUSY ``` ### Results