From 72185fdb2d5c45d4d0b399fe3696560f967b11ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20S=C3=B6derqvist?= Date: Mon, 20 May 2024 22:42:41 +0200 Subject: [PATCH] Move cluster to subdirectory --- .clang-format => libvalkeycluster/.clang-format | 0 .gitignore => libvalkeycluster/.gitignore | 0 CHANGELOG.md => libvalkeycluster/CHANGELOG.md | 0 CMakeLists.txt => libvalkeycluster/CMakeLists.txt | 0 CONTRIBUTING.md => libvalkeycluster/CONTRIBUTING.md | 0 COPYING => libvalkeycluster/COPYING | 0 Makefile => libvalkeycluster/Makefile | 0 README.md => libvalkeycluster/README.md | 0 {adapters => libvalkeycluster/adapters}/ae.h | 0 {adapters => libvalkeycluster/adapters}/glib.h | 0 {adapters => libvalkeycluster/adapters}/libev.h | 0 {adapters => libvalkeycluster/adapters}/libevent.h | 0 {adapters => libvalkeycluster/adapters}/libuv.h | 0 adlist.c => libvalkeycluster/adlist.c | 0 adlist.h => libvalkeycluster/adlist.h | 0 cmddef.h => libvalkeycluster/cmddef.h | 0 command.c => libvalkeycluster/command.c | 0 command.h => libvalkeycluster/command.h | 0 crc16.c => libvalkeycluster/crc16.c | 0 dict.c => libvalkeycluster/dict.c | 0 dict.h => libvalkeycluster/dict.h | 0 {examples => libvalkeycluster/examples}/src/CMakeLists.txt | 0 .../examples}/src/clientside_caching_async.c | 0 {examples => libvalkeycluster/examples}/src/example.c | 0 {examples => libvalkeycluster/examples}/src/example_async.c | 0 {examples => libvalkeycluster/examples}/src/example_tls.c | 0 .../examples}/using_cmake_and_make_mixed/build.sh | 0 .../examples}/using_cmake_externalproject/CMakeLists.txt | 0 .../examples}/using_cmake_externalproject/build.sh | 0 .../examples}/using_cmake_separate/build.sh | 0 {examples => libvalkeycluster/examples}/using_make/build.sh | 0 gencommands.py => libvalkeycluster/gencommands.py | 0 hiarray.c => libvalkeycluster/hiarray.c | 0 hiarray.h => libvalkeycluster/hiarray.h | 0 hircluster.c => libvalkeycluster/hircluster.c | 0 hircluster.h => libvalkeycluster/hircluster.h | 0 hircluster_ssl.c => libvalkeycluster/hircluster_ssl.c | 0 hircluster_ssl.h => libvalkeycluster/hircluster_ssl.h | 0 .../hiredis_cluster-config.cmake.in | 0 hiredis_cluster.def => libvalkeycluster/hiredis_cluster.def | 0 hiredis_cluster.pc.in => libvalkeycluster/hiredis_cluster.pc.in | 0 .../hiredis_cluster_ssl-config.cmake.in | 0 .../hiredis_cluster_ssl.pc.in | 0 hiutil.c => libvalkeycluster/hiutil.c | 0 hiutil.h => libvalkeycluster/hiutil.h | 0 {tests => libvalkeycluster/tests}/CMakeLists.txt | 0 {tests => libvalkeycluster/tests}/clusterclient.c | 0 {tests => libvalkeycluster/tests}/clusterclient_async.c | 0 {tests => libvalkeycluster/tests}/clusterclient_reconnect_async.c | 0 {tests => libvalkeycluster/tests}/ct_async.c | 0 {tests => libvalkeycluster/tests}/ct_async_glib.c | 0 {tests => libvalkeycluster/tests}/ct_async_libev.c | 0 {tests => libvalkeycluster/tests}/ct_async_libuv.c | 0 {tests => libvalkeycluster/tests}/ct_commands.c | 0 {tests => libvalkeycluster/tests}/ct_connection.c | 0 {tests => libvalkeycluster/tests}/ct_connection_ipv6.c | 0 {tests => libvalkeycluster/tests}/ct_out_of_memory_handling.c | 0 {tests => libvalkeycluster/tests}/ct_pipeline.c | 0 {tests => libvalkeycluster/tests}/ct_specific_nodes.c | 0 {tests => libvalkeycluster/tests}/main_async_tls.c | 0 {tests => libvalkeycluster/tests}/main_tls.c | 0 .../tests}/scripts/ask-redirect-connection-error-test.sh | 0 {tests => libvalkeycluster/tests}/scripts/ask-redirect-test.sh | 0 .../tests}/scripts/ask-redirect-using-cluster-nodes-test.sh | 0 {tests => libvalkeycluster/tests}/scripts/cluster-down-test.sh | 0 .../tests}/scripts/cluster-scale-down-test.sh | 0 .../tests}/scripts/command-from-callback-test.sh | 0 .../tests}/scripts/connect-error-using-cluster-nodes-test.sh | 0 .../tests}/scripts/connection-error-test.sh | 0 .../scripts/dbsize-to-all-nodes-during-scaledown-test-async.sh | 0 .../tests}/scripts/dbsize-to-all-nodes-during-scaledown-test.sh | 0 .../tests}/scripts/dbsize-to-all-nodes-test.sh | 0 {tests => libvalkeycluster/tests}/scripts/moved-redirect-test.sh | 0 .../tests}/scripts/moved-redirect-using-cluster-nodes-test.sh | 0 {tests => libvalkeycluster/tests}/scripts/reconnect-test.sh | 0 .../tests}/scripts/redirect-with-hostname-test.sh | 0 .../tests}/scripts/redirect-with-ipv6-test.sh | 0 {tests => libvalkeycluster/tests}/scripts/redis-cluster | 0 {tests => libvalkeycluster/tests}/scripts/set-get-test.sh | 0 {tests => libvalkeycluster/tests}/scripts/simulated-redis.pl | 0 .../tests}/scripts/slots-not-served-test-async.sh | 0 .../tests}/scripts/slots-not-served-test.sh | 0 .../tests}/scripts/timeout-handling-test.sh | 0 {tests => libvalkeycluster/tests}/scripts/valkey-cluster | 0 {tests => libvalkeycluster/tests}/test_utils.c | 0 {tests => libvalkeycluster/tests}/test_utils.h | 0 {tests => libvalkeycluster/tests}/ut_parse_cmd.c | 0 win32.h => libvalkeycluster/win32.h | 0 88 files changed, 0 insertions(+), 0 deletions(-) rename .clang-format => libvalkeycluster/.clang-format (100%) rename .gitignore => libvalkeycluster/.gitignore (100%) rename CHANGELOG.md => libvalkeycluster/CHANGELOG.md (100%) rename CMakeLists.txt => libvalkeycluster/CMakeLists.txt (100%) rename CONTRIBUTING.md => libvalkeycluster/CONTRIBUTING.md (100%) rename COPYING => libvalkeycluster/COPYING (100%) rename Makefile => libvalkeycluster/Makefile (100%) rename README.md => libvalkeycluster/README.md (100%) rename {adapters => libvalkeycluster/adapters}/ae.h (100%) rename {adapters => libvalkeycluster/adapters}/glib.h (100%) rename {adapters => libvalkeycluster/adapters}/libev.h (100%) rename {adapters => libvalkeycluster/adapters}/libevent.h (100%) rename {adapters => libvalkeycluster/adapters}/libuv.h (100%) rename adlist.c => libvalkeycluster/adlist.c (100%) rename adlist.h => libvalkeycluster/adlist.h (100%) rename cmddef.h => libvalkeycluster/cmddef.h (100%) rename command.c => libvalkeycluster/command.c (100%) rename command.h => libvalkeycluster/command.h (100%) rename crc16.c => libvalkeycluster/crc16.c (100%) rename dict.c => libvalkeycluster/dict.c (100%) rename dict.h => libvalkeycluster/dict.h (100%) rename {examples => libvalkeycluster/examples}/src/CMakeLists.txt (100%) rename {examples => libvalkeycluster/examples}/src/clientside_caching_async.c (100%) rename {examples => libvalkeycluster/examples}/src/example.c (100%) rename {examples => libvalkeycluster/examples}/src/example_async.c (100%) rename {examples => libvalkeycluster/examples}/src/example_tls.c (100%) rename {examples => libvalkeycluster/examples}/using_cmake_and_make_mixed/build.sh (100%) rename {examples => libvalkeycluster/examples}/using_cmake_externalproject/CMakeLists.txt (100%) rename {examples => libvalkeycluster/examples}/using_cmake_externalproject/build.sh (100%) rename {examples => libvalkeycluster/examples}/using_cmake_separate/build.sh (100%) rename {examples => libvalkeycluster/examples}/using_make/build.sh (100%) rename gencommands.py => libvalkeycluster/gencommands.py (100%) rename hiarray.c => libvalkeycluster/hiarray.c (100%) rename hiarray.h => libvalkeycluster/hiarray.h (100%) rename hircluster.c => libvalkeycluster/hircluster.c (100%) rename hircluster.h => libvalkeycluster/hircluster.h (100%) rename hircluster_ssl.c => libvalkeycluster/hircluster_ssl.c (100%) rename hircluster_ssl.h => libvalkeycluster/hircluster_ssl.h (100%) rename hiredis_cluster-config.cmake.in => libvalkeycluster/hiredis_cluster-config.cmake.in (100%) rename hiredis_cluster.def => libvalkeycluster/hiredis_cluster.def (100%) rename hiredis_cluster.pc.in => libvalkeycluster/hiredis_cluster.pc.in (100%) rename hiredis_cluster_ssl-config.cmake.in => libvalkeycluster/hiredis_cluster_ssl-config.cmake.in (100%) rename hiredis_cluster_ssl.pc.in => libvalkeycluster/hiredis_cluster_ssl.pc.in (100%) rename hiutil.c => libvalkeycluster/hiutil.c (100%) rename hiutil.h => libvalkeycluster/hiutil.h (100%) rename {tests => libvalkeycluster/tests}/CMakeLists.txt (100%) rename {tests => libvalkeycluster/tests}/clusterclient.c (100%) rename {tests => libvalkeycluster/tests}/clusterclient_async.c (100%) rename {tests => libvalkeycluster/tests}/clusterclient_reconnect_async.c (100%) rename {tests => libvalkeycluster/tests}/ct_async.c (100%) rename {tests => libvalkeycluster/tests}/ct_async_glib.c (100%) rename {tests => libvalkeycluster/tests}/ct_async_libev.c (100%) rename {tests => libvalkeycluster/tests}/ct_async_libuv.c (100%) rename {tests => libvalkeycluster/tests}/ct_commands.c (100%) rename {tests => libvalkeycluster/tests}/ct_connection.c (100%) rename {tests => libvalkeycluster/tests}/ct_connection_ipv6.c (100%) rename {tests => libvalkeycluster/tests}/ct_out_of_memory_handling.c (100%) rename {tests => libvalkeycluster/tests}/ct_pipeline.c (100%) rename {tests => libvalkeycluster/tests}/ct_specific_nodes.c (100%) rename {tests => libvalkeycluster/tests}/main_async_tls.c (100%) rename {tests => libvalkeycluster/tests}/main_tls.c (100%) rename {tests => libvalkeycluster/tests}/scripts/ask-redirect-connection-error-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/ask-redirect-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/ask-redirect-using-cluster-nodes-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/cluster-down-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/cluster-scale-down-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/command-from-callback-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/connect-error-using-cluster-nodes-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/connection-error-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/dbsize-to-all-nodes-during-scaledown-test-async.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/dbsize-to-all-nodes-during-scaledown-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/dbsize-to-all-nodes-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/moved-redirect-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/moved-redirect-using-cluster-nodes-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/reconnect-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/redirect-with-hostname-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/redirect-with-ipv6-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/redis-cluster (100%) rename {tests => libvalkeycluster/tests}/scripts/set-get-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/simulated-redis.pl (100%) rename {tests => libvalkeycluster/tests}/scripts/slots-not-served-test-async.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/slots-not-served-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/timeout-handling-test.sh (100%) rename {tests => libvalkeycluster/tests}/scripts/valkey-cluster (100%) rename {tests => libvalkeycluster/tests}/test_utils.c (100%) rename {tests => libvalkeycluster/tests}/test_utils.h (100%) rename {tests => libvalkeycluster/tests}/ut_parse_cmd.c (100%) rename win32.h => libvalkeycluster/win32.h (100%) diff --git a/.clang-format b/libvalkeycluster/.clang-format similarity index 100% rename from .clang-format rename to libvalkeycluster/.clang-format diff --git a/.gitignore b/libvalkeycluster/.gitignore similarity index 100% rename from .gitignore rename to libvalkeycluster/.gitignore diff --git a/CHANGELOG.md b/libvalkeycluster/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to libvalkeycluster/CHANGELOG.md diff --git a/CMakeLists.txt b/libvalkeycluster/CMakeLists.txt similarity index 100% rename from CMakeLists.txt rename to libvalkeycluster/CMakeLists.txt diff --git a/CONTRIBUTING.md b/libvalkeycluster/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to libvalkeycluster/CONTRIBUTING.md diff --git a/COPYING b/libvalkeycluster/COPYING similarity index 100% rename from COPYING rename to libvalkeycluster/COPYING diff --git a/Makefile b/libvalkeycluster/Makefile similarity index 100% rename from Makefile rename to libvalkeycluster/Makefile diff --git a/README.md b/libvalkeycluster/README.md similarity index 100% rename from README.md rename to libvalkeycluster/README.md diff --git a/adapters/ae.h b/libvalkeycluster/adapters/ae.h similarity index 100% rename from adapters/ae.h rename to libvalkeycluster/adapters/ae.h diff --git a/adapters/glib.h b/libvalkeycluster/adapters/glib.h similarity index 100% rename from adapters/glib.h rename to libvalkeycluster/adapters/glib.h diff --git a/adapters/libev.h b/libvalkeycluster/adapters/libev.h similarity index 100% rename from adapters/libev.h rename to libvalkeycluster/adapters/libev.h diff --git a/adapters/libevent.h b/libvalkeycluster/adapters/libevent.h similarity index 100% rename from adapters/libevent.h rename to libvalkeycluster/adapters/libevent.h diff --git a/adapters/libuv.h b/libvalkeycluster/adapters/libuv.h similarity index 100% rename from adapters/libuv.h rename to libvalkeycluster/adapters/libuv.h diff --git a/adlist.c b/libvalkeycluster/adlist.c similarity index 100% rename from adlist.c rename to libvalkeycluster/adlist.c diff --git a/adlist.h b/libvalkeycluster/adlist.h similarity index 100% rename from adlist.h rename to libvalkeycluster/adlist.h diff --git a/cmddef.h b/libvalkeycluster/cmddef.h similarity index 100% rename from cmddef.h rename to libvalkeycluster/cmddef.h diff --git a/command.c b/libvalkeycluster/command.c similarity index 100% rename from command.c rename to libvalkeycluster/command.c diff --git a/command.h b/libvalkeycluster/command.h similarity index 100% rename from command.h rename to libvalkeycluster/command.h diff --git a/crc16.c b/libvalkeycluster/crc16.c similarity index 100% rename from crc16.c rename to libvalkeycluster/crc16.c diff --git a/dict.c b/libvalkeycluster/dict.c similarity index 100% rename from dict.c rename to libvalkeycluster/dict.c diff --git a/dict.h b/libvalkeycluster/dict.h similarity index 100% rename from dict.h rename to libvalkeycluster/dict.h diff --git a/examples/src/CMakeLists.txt b/libvalkeycluster/examples/src/CMakeLists.txt similarity index 100% rename from examples/src/CMakeLists.txt rename to libvalkeycluster/examples/src/CMakeLists.txt diff --git a/examples/src/clientside_caching_async.c b/libvalkeycluster/examples/src/clientside_caching_async.c similarity index 100% rename from examples/src/clientside_caching_async.c rename to libvalkeycluster/examples/src/clientside_caching_async.c diff --git a/examples/src/example.c b/libvalkeycluster/examples/src/example.c similarity index 100% rename from examples/src/example.c rename to libvalkeycluster/examples/src/example.c diff --git a/examples/src/example_async.c b/libvalkeycluster/examples/src/example_async.c similarity index 100% rename from examples/src/example_async.c rename to libvalkeycluster/examples/src/example_async.c diff --git a/examples/src/example_tls.c b/libvalkeycluster/examples/src/example_tls.c similarity index 100% rename from examples/src/example_tls.c rename to libvalkeycluster/examples/src/example_tls.c diff --git a/examples/using_cmake_and_make_mixed/build.sh b/libvalkeycluster/examples/using_cmake_and_make_mixed/build.sh similarity index 100% rename from examples/using_cmake_and_make_mixed/build.sh rename to libvalkeycluster/examples/using_cmake_and_make_mixed/build.sh diff --git a/examples/using_cmake_externalproject/CMakeLists.txt b/libvalkeycluster/examples/using_cmake_externalproject/CMakeLists.txt similarity index 100% rename from examples/using_cmake_externalproject/CMakeLists.txt rename to libvalkeycluster/examples/using_cmake_externalproject/CMakeLists.txt diff --git a/examples/using_cmake_externalproject/build.sh b/libvalkeycluster/examples/using_cmake_externalproject/build.sh similarity index 100% rename from examples/using_cmake_externalproject/build.sh rename to libvalkeycluster/examples/using_cmake_externalproject/build.sh diff --git a/examples/using_cmake_separate/build.sh b/libvalkeycluster/examples/using_cmake_separate/build.sh similarity index 100% rename from examples/using_cmake_separate/build.sh rename to libvalkeycluster/examples/using_cmake_separate/build.sh diff --git a/examples/using_make/build.sh b/libvalkeycluster/examples/using_make/build.sh similarity index 100% rename from examples/using_make/build.sh rename to libvalkeycluster/examples/using_make/build.sh diff --git a/gencommands.py b/libvalkeycluster/gencommands.py similarity index 100% rename from gencommands.py rename to libvalkeycluster/gencommands.py diff --git a/hiarray.c b/libvalkeycluster/hiarray.c similarity index 100% rename from hiarray.c rename to libvalkeycluster/hiarray.c diff --git a/hiarray.h b/libvalkeycluster/hiarray.h similarity index 100% rename from hiarray.h rename to libvalkeycluster/hiarray.h diff --git a/hircluster.c b/libvalkeycluster/hircluster.c similarity index 100% rename from hircluster.c rename to libvalkeycluster/hircluster.c diff --git a/hircluster.h b/libvalkeycluster/hircluster.h similarity index 100% rename from hircluster.h rename to libvalkeycluster/hircluster.h diff --git a/hircluster_ssl.c b/libvalkeycluster/hircluster_ssl.c similarity index 100% rename from hircluster_ssl.c rename to libvalkeycluster/hircluster_ssl.c diff --git a/hircluster_ssl.h b/libvalkeycluster/hircluster_ssl.h similarity index 100% rename from hircluster_ssl.h rename to libvalkeycluster/hircluster_ssl.h diff --git a/hiredis_cluster-config.cmake.in b/libvalkeycluster/hiredis_cluster-config.cmake.in similarity index 100% rename from hiredis_cluster-config.cmake.in rename to libvalkeycluster/hiredis_cluster-config.cmake.in diff --git a/hiredis_cluster.def b/libvalkeycluster/hiredis_cluster.def similarity index 100% rename from hiredis_cluster.def rename to libvalkeycluster/hiredis_cluster.def diff --git a/hiredis_cluster.pc.in b/libvalkeycluster/hiredis_cluster.pc.in similarity index 100% rename from hiredis_cluster.pc.in rename to libvalkeycluster/hiredis_cluster.pc.in diff --git a/hiredis_cluster_ssl-config.cmake.in b/libvalkeycluster/hiredis_cluster_ssl-config.cmake.in similarity index 100% rename from hiredis_cluster_ssl-config.cmake.in rename to libvalkeycluster/hiredis_cluster_ssl-config.cmake.in diff --git a/hiredis_cluster_ssl.pc.in b/libvalkeycluster/hiredis_cluster_ssl.pc.in similarity index 100% rename from hiredis_cluster_ssl.pc.in rename to libvalkeycluster/hiredis_cluster_ssl.pc.in diff --git a/hiutil.c b/libvalkeycluster/hiutil.c similarity index 100% rename from hiutil.c rename to libvalkeycluster/hiutil.c diff --git a/hiutil.h b/libvalkeycluster/hiutil.h similarity index 100% rename from hiutil.h rename to libvalkeycluster/hiutil.h diff --git a/tests/CMakeLists.txt b/libvalkeycluster/tests/CMakeLists.txt similarity index 100% rename from tests/CMakeLists.txt rename to libvalkeycluster/tests/CMakeLists.txt diff --git a/tests/clusterclient.c b/libvalkeycluster/tests/clusterclient.c similarity index 100% rename from tests/clusterclient.c rename to libvalkeycluster/tests/clusterclient.c diff --git a/tests/clusterclient_async.c b/libvalkeycluster/tests/clusterclient_async.c similarity index 100% rename from tests/clusterclient_async.c rename to libvalkeycluster/tests/clusterclient_async.c diff --git a/tests/clusterclient_reconnect_async.c b/libvalkeycluster/tests/clusterclient_reconnect_async.c similarity index 100% rename from tests/clusterclient_reconnect_async.c rename to libvalkeycluster/tests/clusterclient_reconnect_async.c diff --git a/tests/ct_async.c b/libvalkeycluster/tests/ct_async.c similarity index 100% rename from tests/ct_async.c rename to libvalkeycluster/tests/ct_async.c diff --git a/tests/ct_async_glib.c b/libvalkeycluster/tests/ct_async_glib.c similarity index 100% rename from tests/ct_async_glib.c rename to libvalkeycluster/tests/ct_async_glib.c diff --git a/tests/ct_async_libev.c b/libvalkeycluster/tests/ct_async_libev.c similarity index 100% rename from tests/ct_async_libev.c rename to libvalkeycluster/tests/ct_async_libev.c diff --git a/tests/ct_async_libuv.c b/libvalkeycluster/tests/ct_async_libuv.c similarity index 100% rename from tests/ct_async_libuv.c rename to libvalkeycluster/tests/ct_async_libuv.c diff --git a/tests/ct_commands.c b/libvalkeycluster/tests/ct_commands.c similarity index 100% rename from tests/ct_commands.c rename to libvalkeycluster/tests/ct_commands.c diff --git a/tests/ct_connection.c b/libvalkeycluster/tests/ct_connection.c similarity index 100% rename from tests/ct_connection.c rename to libvalkeycluster/tests/ct_connection.c diff --git a/tests/ct_connection_ipv6.c b/libvalkeycluster/tests/ct_connection_ipv6.c similarity index 100% rename from tests/ct_connection_ipv6.c rename to libvalkeycluster/tests/ct_connection_ipv6.c diff --git a/tests/ct_out_of_memory_handling.c b/libvalkeycluster/tests/ct_out_of_memory_handling.c similarity index 100% rename from tests/ct_out_of_memory_handling.c rename to libvalkeycluster/tests/ct_out_of_memory_handling.c diff --git a/tests/ct_pipeline.c b/libvalkeycluster/tests/ct_pipeline.c similarity index 100% rename from tests/ct_pipeline.c rename to libvalkeycluster/tests/ct_pipeline.c diff --git a/tests/ct_specific_nodes.c b/libvalkeycluster/tests/ct_specific_nodes.c similarity index 100% rename from tests/ct_specific_nodes.c rename to libvalkeycluster/tests/ct_specific_nodes.c diff --git a/tests/main_async_tls.c b/libvalkeycluster/tests/main_async_tls.c similarity index 100% rename from tests/main_async_tls.c rename to libvalkeycluster/tests/main_async_tls.c diff --git a/tests/main_tls.c b/libvalkeycluster/tests/main_tls.c similarity index 100% rename from tests/main_tls.c rename to libvalkeycluster/tests/main_tls.c diff --git a/tests/scripts/ask-redirect-connection-error-test.sh b/libvalkeycluster/tests/scripts/ask-redirect-connection-error-test.sh similarity index 100% rename from tests/scripts/ask-redirect-connection-error-test.sh rename to libvalkeycluster/tests/scripts/ask-redirect-connection-error-test.sh diff --git a/tests/scripts/ask-redirect-test.sh b/libvalkeycluster/tests/scripts/ask-redirect-test.sh similarity index 100% rename from tests/scripts/ask-redirect-test.sh rename to libvalkeycluster/tests/scripts/ask-redirect-test.sh diff --git a/tests/scripts/ask-redirect-using-cluster-nodes-test.sh b/libvalkeycluster/tests/scripts/ask-redirect-using-cluster-nodes-test.sh similarity index 100% rename from tests/scripts/ask-redirect-using-cluster-nodes-test.sh rename to libvalkeycluster/tests/scripts/ask-redirect-using-cluster-nodes-test.sh diff --git a/tests/scripts/cluster-down-test.sh b/libvalkeycluster/tests/scripts/cluster-down-test.sh similarity index 100% rename from tests/scripts/cluster-down-test.sh rename to libvalkeycluster/tests/scripts/cluster-down-test.sh diff --git a/tests/scripts/cluster-scale-down-test.sh b/libvalkeycluster/tests/scripts/cluster-scale-down-test.sh similarity index 100% rename from tests/scripts/cluster-scale-down-test.sh rename to libvalkeycluster/tests/scripts/cluster-scale-down-test.sh diff --git a/tests/scripts/command-from-callback-test.sh b/libvalkeycluster/tests/scripts/command-from-callback-test.sh similarity index 100% rename from tests/scripts/command-from-callback-test.sh rename to libvalkeycluster/tests/scripts/command-from-callback-test.sh diff --git a/tests/scripts/connect-error-using-cluster-nodes-test.sh b/libvalkeycluster/tests/scripts/connect-error-using-cluster-nodes-test.sh similarity index 100% rename from tests/scripts/connect-error-using-cluster-nodes-test.sh rename to libvalkeycluster/tests/scripts/connect-error-using-cluster-nodes-test.sh diff --git a/tests/scripts/connection-error-test.sh b/libvalkeycluster/tests/scripts/connection-error-test.sh similarity index 100% rename from tests/scripts/connection-error-test.sh rename to libvalkeycluster/tests/scripts/connection-error-test.sh diff --git a/tests/scripts/dbsize-to-all-nodes-during-scaledown-test-async.sh b/libvalkeycluster/tests/scripts/dbsize-to-all-nodes-during-scaledown-test-async.sh similarity index 100% rename from tests/scripts/dbsize-to-all-nodes-during-scaledown-test-async.sh rename to libvalkeycluster/tests/scripts/dbsize-to-all-nodes-during-scaledown-test-async.sh diff --git a/tests/scripts/dbsize-to-all-nodes-during-scaledown-test.sh b/libvalkeycluster/tests/scripts/dbsize-to-all-nodes-during-scaledown-test.sh similarity index 100% rename from tests/scripts/dbsize-to-all-nodes-during-scaledown-test.sh rename to libvalkeycluster/tests/scripts/dbsize-to-all-nodes-during-scaledown-test.sh diff --git a/tests/scripts/dbsize-to-all-nodes-test.sh b/libvalkeycluster/tests/scripts/dbsize-to-all-nodes-test.sh similarity index 100% rename from tests/scripts/dbsize-to-all-nodes-test.sh rename to libvalkeycluster/tests/scripts/dbsize-to-all-nodes-test.sh diff --git a/tests/scripts/moved-redirect-test.sh b/libvalkeycluster/tests/scripts/moved-redirect-test.sh similarity index 100% rename from tests/scripts/moved-redirect-test.sh rename to libvalkeycluster/tests/scripts/moved-redirect-test.sh diff --git a/tests/scripts/moved-redirect-using-cluster-nodes-test.sh b/libvalkeycluster/tests/scripts/moved-redirect-using-cluster-nodes-test.sh similarity index 100% rename from tests/scripts/moved-redirect-using-cluster-nodes-test.sh rename to libvalkeycluster/tests/scripts/moved-redirect-using-cluster-nodes-test.sh diff --git a/tests/scripts/reconnect-test.sh b/libvalkeycluster/tests/scripts/reconnect-test.sh similarity index 100% rename from tests/scripts/reconnect-test.sh rename to libvalkeycluster/tests/scripts/reconnect-test.sh diff --git a/tests/scripts/redirect-with-hostname-test.sh b/libvalkeycluster/tests/scripts/redirect-with-hostname-test.sh similarity index 100% rename from tests/scripts/redirect-with-hostname-test.sh rename to libvalkeycluster/tests/scripts/redirect-with-hostname-test.sh diff --git a/tests/scripts/redirect-with-ipv6-test.sh b/libvalkeycluster/tests/scripts/redirect-with-ipv6-test.sh similarity index 100% rename from tests/scripts/redirect-with-ipv6-test.sh rename to libvalkeycluster/tests/scripts/redirect-with-ipv6-test.sh diff --git a/tests/scripts/redis-cluster b/libvalkeycluster/tests/scripts/redis-cluster similarity index 100% rename from tests/scripts/redis-cluster rename to libvalkeycluster/tests/scripts/redis-cluster diff --git a/tests/scripts/set-get-test.sh b/libvalkeycluster/tests/scripts/set-get-test.sh similarity index 100% rename from tests/scripts/set-get-test.sh rename to libvalkeycluster/tests/scripts/set-get-test.sh diff --git a/tests/scripts/simulated-redis.pl b/libvalkeycluster/tests/scripts/simulated-redis.pl similarity index 100% rename from tests/scripts/simulated-redis.pl rename to libvalkeycluster/tests/scripts/simulated-redis.pl diff --git a/tests/scripts/slots-not-served-test-async.sh b/libvalkeycluster/tests/scripts/slots-not-served-test-async.sh similarity index 100% rename from tests/scripts/slots-not-served-test-async.sh rename to libvalkeycluster/tests/scripts/slots-not-served-test-async.sh diff --git a/tests/scripts/slots-not-served-test.sh b/libvalkeycluster/tests/scripts/slots-not-served-test.sh similarity index 100% rename from tests/scripts/slots-not-served-test.sh rename to libvalkeycluster/tests/scripts/slots-not-served-test.sh diff --git a/tests/scripts/timeout-handling-test.sh b/libvalkeycluster/tests/scripts/timeout-handling-test.sh similarity index 100% rename from tests/scripts/timeout-handling-test.sh rename to libvalkeycluster/tests/scripts/timeout-handling-test.sh diff --git a/tests/scripts/valkey-cluster b/libvalkeycluster/tests/scripts/valkey-cluster similarity index 100% rename from tests/scripts/valkey-cluster rename to libvalkeycluster/tests/scripts/valkey-cluster diff --git a/tests/test_utils.c b/libvalkeycluster/tests/test_utils.c similarity index 100% rename from tests/test_utils.c rename to libvalkeycluster/tests/test_utils.c diff --git a/tests/test_utils.h b/libvalkeycluster/tests/test_utils.h similarity index 100% rename from tests/test_utils.h rename to libvalkeycluster/tests/test_utils.h diff --git a/tests/ut_parse_cmd.c b/libvalkeycluster/tests/ut_parse_cmd.c similarity index 100% rename from tests/ut_parse_cmd.c rename to libvalkeycluster/tests/ut_parse_cmd.c diff --git a/win32.h b/libvalkeycluster/win32.h similarity index 100% rename from win32.h rename to libvalkeycluster/win32.h