[Libreoffice-commits] core.git: sal/cppunittester sal/Executable_cppunittester.mk
Mike Kaganski (via logerrit)
logerrit at kemper.freedesktop.org
Sun May 24 10:31:07 UTC 2020
sal/Executable_cppunittester.mk | 4 ----
sal/cppunittester/cppunittester.cxx | 10 ++++------
2 files changed, 4 insertions(+), 10 deletions(-)
New commits:
commit b3c8859cd20bd02adea5d2b026001f67feacc754
Author: Mike Kaganski <mike.kaganski at collabora.com>
AuthorDate: Sun May 24 11:42:02 2020 +0200
Commit: Mike Kaganski <mike.kaganski at collabora.com>
CommitDate: Sun May 24 12:30:32 2020 +0200
Revert "Try to blind-solve cppunittester hangs on Windows"
This reverts commit 1126515226b60630b3a0fd72c45258b230dfe8fd.
Reason for revert: it only took one run after merging the patch to see it
still hangs...
Change-Id: I9235004d0568462b112da7f23bc615f3647f4755
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94677
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski at collabora.com>
diff --git a/sal/Executable_cppunittester.mk b/sal/Executable_cppunittester.mk
index 65426e722240..3b9016783b80 100644
--- a/sal/Executable_cppunittester.mk
+++ b/sal/Executable_cppunittester.mk
@@ -28,10 +28,6 @@ $(eval $(call gb_Executable_add_exception_objects,cppunittester,\
sal/cppunittester/cppunittester \
))
-$(eval $(call gb_Executable_use_system_win32_libs,cppunittester,\
- ole32 \
-))
-
ifeq ($(COM),MSC)
$(eval $(call gb_Executable_add_ldflags,cppunittester,\
diff --git a/sal/cppunittester/cppunittester.cxx b/sal/cppunittester/cppunittester.cxx
index 1b3c518c4b21..a760ecf8ff41 100644
--- a/sal/cppunittester/cppunittester.cxx
+++ b/sal/cppunittester/cppunittester.cxx
@@ -18,9 +18,10 @@
*/
#ifdef _WIN32
-#include <prewin.h>
-#include <ole2.h>
-#include <postwin.h>
+#if !defined WIN32_LEAN_AND_MEAN
+# define WIN32_LEAN_AND_MEAN
+#endif
+#include <windows.h>
#endif
#ifdef UNX
@@ -388,9 +389,6 @@ SAL_IMPLEMENT_MAIN()
_CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG|_CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);
#endif
-
- // Tests may use e.g. OLE or clipboard; initialize COM and appropriate concurrency early
- OleInitialize(nullptr);
#endif
std::vector<CppUnit::Protector *> protectors;
More information about the Libreoffice-commits
mailing list