From 17eaa573ca8addcd7921344707b9097b469fc259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=A8=E5=A4=B4=E4=BA=91?= Date: Sun, 30 Nov 2025 04:04:10 +0000 Subject: [PATCH] chore(test): archive existing test cases to test/archive - Move all existing test files (*.cpp, *.h) to test/archive/ - Rename CMakeLists.txt to CMakeLists.txt.old in archive - Prepare for comprehensive unit test refactoring --- test/{CMakeLists.txt => archive/CMakeLists.txt.old} | 0 test/{ => archive}/test.h | 0 test/{ => archive}/test_ipc.cpp | 0 test/{ => archive}/test_mem.cpp | 0 test/{ => archive}/test_platform.cpp | 0 test/{ => archive}/test_queue.cpp | 0 test/{ => archive}/test_shm.cpp | 0 test/{ => archive}/test_sync.cpp | 0 test/{ => archive}/test_thread_utility.cpp | 0 test/{ => archive}/test_waiter.cpp | 0 test/{ => archive}/thread_pool.h | 0 11 files changed, 0 insertions(+), 0 deletions(-) rename test/{CMakeLists.txt => archive/CMakeLists.txt.old} (100%) rename test/{ => archive}/test.h (100%) rename test/{ => archive}/test_ipc.cpp (100%) rename test/{ => archive}/test_mem.cpp (100%) rename test/{ => archive}/test_platform.cpp (100%) rename test/{ => archive}/test_queue.cpp (100%) rename test/{ => archive}/test_shm.cpp (100%) rename test/{ => archive}/test_sync.cpp (100%) rename test/{ => archive}/test_thread_utility.cpp (100%) rename test/{ => archive}/test_waiter.cpp (100%) rename test/{ => archive}/thread_pool.h (100%) diff --git a/test/CMakeLists.txt b/test/archive/CMakeLists.txt.old similarity index 100% rename from test/CMakeLists.txt rename to test/archive/CMakeLists.txt.old diff --git a/test/test.h b/test/archive/test.h similarity index 100% rename from test/test.h rename to test/archive/test.h diff --git a/test/test_ipc.cpp b/test/archive/test_ipc.cpp similarity index 100% rename from test/test_ipc.cpp rename to test/archive/test_ipc.cpp diff --git a/test/test_mem.cpp b/test/archive/test_mem.cpp similarity index 100% rename from test/test_mem.cpp rename to test/archive/test_mem.cpp diff --git a/test/test_platform.cpp b/test/archive/test_platform.cpp similarity index 100% rename from test/test_platform.cpp rename to test/archive/test_platform.cpp diff --git a/test/test_queue.cpp b/test/archive/test_queue.cpp similarity index 100% rename from test/test_queue.cpp rename to test/archive/test_queue.cpp diff --git a/test/test_shm.cpp b/test/archive/test_shm.cpp similarity index 100% rename from test/test_shm.cpp rename to test/archive/test_shm.cpp diff --git a/test/test_sync.cpp b/test/archive/test_sync.cpp similarity index 100% rename from test/test_sync.cpp rename to test/archive/test_sync.cpp diff --git a/test/test_thread_utility.cpp b/test/archive/test_thread_utility.cpp similarity index 100% rename from test/test_thread_utility.cpp rename to test/archive/test_thread_utility.cpp diff --git a/test/test_waiter.cpp b/test/archive/test_waiter.cpp similarity index 100% rename from test/test_waiter.cpp rename to test/archive/test_waiter.cpp diff --git a/test/thread_pool.h b/test/archive/thread_pool.h similarity index 100% rename from test/thread_pool.h rename to test/archive/thread_pool.h