Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ nextcloud_add_test(Utility)

if (NOT APPLE)
nextcloud_add_test(SyncEngine)
nextcloud_add_test(SyncVirtualFiles)
endif()

nextcloud_add_test(SyncVirtualFiles)
nextcloud_add_test(SyncMove)
nextcloud_add_test(SyncDelete)
nextcloud_add_test(SyncConflict)
Expand Down
4 changes: 4 additions & 0 deletions test/testfolderwatcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@ private slots:
}
void testDetectLockFilesExternally()
{
#if defined Q_OS_MACOS
QSKIP("not reliable on macOS");
#endif

QStringList listOfOfficeFiles = {QString(_rootPath + "/document.docx"), QString(_rootPath + "/document.odt")};
std::sort(std::begin(listOfOfficeFiles), std::end(listOfOfficeFiles));

Expand Down
4 changes: 4 additions & 0 deletions test/testsyncmove.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -976,6 +976,10 @@ private slots:

void testMovedWithError()
{
#if defined Q_OS_MACOS
QSKIP("not reliable on macOS");
#endif

QFETCH(Vfs::Mode, vfsMode);
const auto getName = [vfsMode] (const QString &s)
{
Expand Down