From 9a02b775c18643e5dc41873f202c3f4200c28ad4 Mon Sep 17 00:00:00 2001 From: Shivshankar Date: Wed, 3 Apr 2024 19:17:38 -0400 Subject: [PATCH] Replace Valkey in runtest scripts error prints (#190) Replaced Redis with Valkey in runtest script's error prints. Signed-off-by: Shivshankar-Reddy --- runtest | 2 +- runtest-cluster | 2 +- runtest-moduleapi | 2 +- runtest-sentinel | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/runtest b/runtest index 88617c1a63..00949bc304 100755 --- a/runtest +++ b/runtest @@ -8,7 +8,7 @@ done if [ -z $TCLSH ] then - echo "You need tcl 8.5 or newer in order to run the Redis test" + echo "You need tcl 8.5 or newer in order to run the Valkey test" exit 1 fi $TCLSH tests/test_helper.tcl "${@}" diff --git a/runtest-cluster b/runtest-cluster index e465ce1863..85e8690b1c 100755 --- a/runtest-cluster +++ b/runtest-cluster @@ -8,7 +8,7 @@ done if [ -z $TCLSH ] then - echo "You need tcl 8.5 or newer in order to run the Redis Cluster test" + echo "You need tcl 8.5 or newer in order to run the Valkey Cluster test" exit 1 fi $TCLSH tests/cluster/run.tcl $* diff --git a/runtest-moduleapi b/runtest-moduleapi index 910d581f2f..4439cbcd03 100755 --- a/runtest-moduleapi +++ b/runtest-moduleapi @@ -9,7 +9,7 @@ done if [ -z $TCLSH ] then - echo "You need tcl 8.5 or newer in order to run the Redis ModuleApi test" + echo "You need tcl 8.5 or newer in order to run the Valkey ModuleApi test" exit 1 fi diff --git a/runtest-sentinel b/runtest-sentinel index 60d8c3ceab..3bbe9af3c8 100755 --- a/runtest-sentinel +++ b/runtest-sentinel @@ -8,7 +8,7 @@ done if [ -z $TCLSH ] then - echo "You need tcl 8.5 or newer in order to run the Redis Sentinel test" + echo "You need tcl 8.5 or newer in order to run the Valkey Sentinel test" exit 1 fi $TCLSH tests/sentinel/run.tcl $*