diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-05-25 15:21:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-05-25 16:13:08 +0200 |
commit | ef88aa5e7400769c0a17c28e66b1ee957c2f667e (patch) | |
tree | 5c29a7c3a609c0152da21e7378c27778dca5e9a0 /io/Module_io.mk | |
parent | ecf48b2d4f3e54dbb2c1e295120d73e7b7a11338 (diff) |
Resurrect io testconnection executable
...which appears to be the only code that exercises osl's socket (rather than
named pipe) connections, so lets have that available at least for manual
execution.
Addresses various compiler and loplugin warnings, and extends a wait time to
more reliably have the MyThread instance already accept when the second accept
(on the main thread) is done.
Change-Id: I761d747b08ab45f1ac03dad8b4197fae63228e16
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116103
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'io/Module_io.mk')
-rw-r--r-- | io/Module_io.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/io/Module_io.mk b/io/Module_io.mk index c9751d9bea04..c4a75e74e7ec 100644 --- a/io/Module_io.mk +++ b/io/Module_io.mk @@ -17,4 +17,10 @@ $(eval $(call gb_Module_add_subsequentcheck_targets,io,\ CppunitTest_io_textinputstream \ )) +ifneq (,$(filter Executable_io-testconnection,$(MAKECMDGOALS))) +$(eval $(call gb_Module_add_targets,io, \ + Executable_io-testconnection \ +)) +endif + # vim:set noet sw=4 ts=4: |