From 84aa7098a605810a206ae5111e0828d3dbd93063 Mon Sep 17 00:00:00 2001 From: Erik Verbruggen Date: Fri, 31 Jan 2025 16:22:59 +0100 Subject: [PATCH] Rename `LongPathTest` to `FileSystemTest` In preparation for adding more tests for `OCC::FileSystem`. --- test/CMakeLists.txt | 2 +- test/{testlongpath.cpp => testfilesystem.cpp} | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename test/{testlongpath.cpp => testfilesystem.cpp} (98%) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 043b736da7f..e39be665d8d 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -53,7 +53,7 @@ if( UNIX AND NOT APPLE ) endif(UNIX AND NOT APPLE) -owncloud_add_test(LongPath) +owncloud_add_test(FileSystem) owncloud_add_test(FolderMan) diff --git a/test/testlongpath.cpp b/test/testfilesystem.cpp similarity index 98% rename from test/testlongpath.cpp rename to test/testfilesystem.cpp index 5b81da5be3c..79ae6968d60 100644 --- a/test/testlongpath.cpp +++ b/test/testfilesystem.cpp @@ -26,7 +26,7 @@ #include -class TestLongWindowsPath : public QObject +class TestFileSystem : public QObject { Q_OBJECT @@ -139,5 +139,5 @@ private Q_SLOTS: } }; -QTEST_GUILESS_MAIN(TestLongWindowsPath) -#include "testlongpath.moc" +QTEST_GUILESS_MAIN(TestFileSystem) +#include "testfilesystem.moc"