office-gobmx/testtools
Jean-Noël Rouvignac 97eb8a6e0e Removed several useless macros: A2OU, A2S, C2U, C2S, OUSTR, OUSTRING
Change-Id: Ie859cb2dfdc7103c379fce56be88eef8fe390afd
Reviewed-on: https://gerrit.libreoffice.org/1924
Tested-by: Luboš Luňák <l.lunak@suse.cz>
Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
2013-01-30 12:54:40 +00:00
..
com/sun/star/comp/bridge Java5 updates - update code to use generics 2012-06-29 22:03:05 +02:00
prj
qa Get rid of (most uses of) GUI 2012-12-25 17:53:25 +00:00
source Removed several useless macros: A2OU, A2S, C2U, C2S, OUSTR, OUSTRING 2013-01-30 12:54:40 +00:00
util re-base on ALv2 code. 2012-06-21 13:11:06 +01:00
CustomTarget_bridgetest.mk Always have UNO_SERVICES/TYPES set in in-build uno ini file 2012-12-20 14:58:13 +01:00
CustomTarget_bridgetest_climaker.mk add runtime deps for custom targets 2012-12-30 17:15:48 +01:00
CustomTarget_bridgetest_javamaker.mk add runtime deps for custom targets 2012-12-30 17:15:48 +01:00
CustomTarget_uno_test.mk add runtime deps for custom targets 2012-12-30 17:15:48 +01:00
InternalUnoApi_bridgetest.mk gbuild: fix silly "expandtabs" in makefile VIM modelines 2013-01-26 22:20:07 +01:00
Jar_testComponent.mk gbuild: register all jars 2012-08-17 12:52:25 +02:00
Library_bridgetest.mk gbuild: fix silly "expandtabs" in makefile VIM modelines 2013-01-26 22:20:07 +01:00
Library_constructors.mk gbuild: fix silly "expandtabs" in makefile VIM modelines 2013-01-26 22:20:07 +01:00
Library_cppobj.mk gbuild: fix silly "expandtabs" in makefile VIM modelines 2013-01-26 22:20:07 +01:00
Makefile
Module_testtools.mk gbuild: fix silly "expandtabs" in makefile VIM modelines 2013-01-26 22:20:07 +01:00
Rdb_uno_services.mk gbuild: fix silly "expandtabs" in makefile VIM modelines 2013-01-26 22:20:07 +01:00
README
StaticLibrary_bridgetest.mk gbuild: do not copy boost headers around 2013-01-26 22:20:06 +01:00

Testing tools

== How to check compatibility between compilers ==

Since the interfaces used in the cpp bridgetest are not changed often
one can just build the cppobj.uno.dll and the constructors.uno.dll
(testtools/source/bridgetest) in an
old environment and then use them in the new environment. That is the files
are copied into the testtools/wntmsciXX.pro folder which corresponds to the
new environment.

On Windows this test will typically fail because the tests use the
cppu::getCaughtException function, which only works when all libs are build
using the same runtime.

This part of the test can switched off. To do this go into the
testtools/source/bridgetest folder and call
dmake compcheck=1

This will add a new compiler define (-DCOMPCHECK) and will be used in the
bridgetest.cxx to switch off the code which uses the getCaughtException function.
However, there is still a test which causes the test component to throw
and IllegalArgumentException. This still works.


== Using source/bridgetest for stress testing ==

Start a modified bridgetest_server (with the final "--singleaccept" argument
removed from the uno executable call) or a modified bridgetest_javaserver (with
the final "singleaccept" argument replaced with "multi" in the java executable
call), then start a modified bridgetest_client (with a final "stress" argument
added to the uno executable call).  The client will continuously establish
connections to the server which are immediately destroyed again.  The test will
run forever, unless an error occurs.