From a3083f8be4fc064705a47d702ce00c32230976cf Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Wed, 15 May 2024 14:18:05 +0200 Subject: [PATCH] skip FolderWatcher on windows: really not a reliable test Signed-off-by: Matthieu Gallien --- test/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 7f86c6bf07..5e2fd889b7 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -59,7 +59,11 @@ nextcloud_add_test(Permissions) nextcloud_add_test(SelectiveSync) nextcloud_add_test(DatabaseError) nextcloud_add_test(LockedFiles) -nextcloud_add_test(FolderWatcher) + +if (NOT WIN32) + nextcloud_add_test(FolderWatcher) +endif() + nextcloud_add_test(Capabilities) nextcloud_add_test(PushNotifications) nextcloud_add_test(Theme)