From 02b2f2787a6497f575fe52b7e689dc12d20f8157 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sat, 12 Mar 2022 21:15:57 -0800 Subject: [PATCH] Tests: Rename AK/TestMemMem.cpp to AK/TestMemory.cpp Rename to create a new generic test group for the AK memory APIs. --- Tests/AK/CMakeLists.txt | 2 +- Tests/AK/{TestMemMem.cpp => TestMemory.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Tests/AK/{TestMemMem.cpp => TestMemory.cpp} (100%) diff --git a/Tests/AK/CMakeLists.txt b/Tests/AK/CMakeLists.txt index 7a62045a7e..a7314da56d 100644 --- a/Tests/AK/CMakeLists.txt +++ b/Tests/AK/CMakeLists.txt @@ -41,7 +41,7 @@ set(AK_TEST_SOURCES TestLEB128.cpp TestLexicalPath.cpp TestMACAddress.cpp - TestMemMem.cpp + TestMemory.cpp TestMemoryStream.cpp TestNeverDestroyed.cpp TestNonnullRefPtr.cpp diff --git a/Tests/AK/TestMemMem.cpp b/Tests/AK/TestMemory.cpp similarity index 100% rename from Tests/AK/TestMemMem.cpp rename to Tests/AK/TestMemory.cpp