summaryrefslogtreecommitdiffstats
path: root/unotest
Commit message (Collapse)AuthorAgeFilesLines
* targetted improvement of UNO API includes / usageMichael Meeks2012-07-023-12/+3
|
* Java5 updates - update code to use genericsNoel Grandin2012-06-291-1/+1
| | | | | | This is all of the code I missed in my first set of patches. Change-Id: I8c7c9e5ac28dc3c2f3ac062c806fbf0787c997bd
* targetted re-work of cppunit pieces.Michael Meeks2012-06-277-17/+1
|
* re-base on ALv2 code.Michael Meeks2012-06-2624-590/+394
|
* unotest: missing include guard in macros_test.hxxMiklos Vajna2012-05-091-0/+5
| | | | Change-Id: Iee44d81a3667613485785481dcc0cb46f3b6a8ff
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-1/+0
| | | | | | | | this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
* OfficeConnection: kill soffice process when Java bridge is disposedMichael Stahl2012-04-141-15/+24
| | | | | In the rare case that the soffice process outlives the Java side UNO bridge, ensure that soffice.bin doesn't continue running.
* setup/teardown default component context once before/after all testsCaolán McNamara2012-04-135-41/+178
| | | | | | | | | | | | | avoids the problems of dangling uno singletons invalidated after the first dispose and the chain of other singletons that don't expect to need to re-initialize, etc. reenable editeng cppunit test inherit i18npool cppunit test from unotest base drop LibreOfficeProtector, do "throwable" work in setUp/tearDown not in ctors/dtors
* Obtain resolver before spawning process_ in setUpStephan Bergmann2012-04-101-3/+3
| | | | | ...so that tearDown does not hang waiting for (idling) process_ to terminate if setUp throws an exception when obtaining resolver.
* LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl2012-04-082-2/+2
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-084-7/+7
| | | | | | | | | Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-141-0/+2
| | | | | | | | | | | | | | ...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
* add regression test for writerMarkus Mohrhard2012-03-092-0/+8
| | | | | | | use the hidden layout dump export filter to export the state of the layout and compare it against a reference file Still a work in progress.
* OfficeConnection.java: don't wait forever if terminate() failsMichael Stahl2012-03-031-1/+6
|
* We want gb_STDLIBS here surely?Tor Lillqvist2012-02-172-0/+2
|
* unotest: convert to gbuildMatúš Kukan2012-02-1014-253/+320
|
* Do not fail isStillAlive for "connect:" connectionsStephan Bergmann2012-02-091-1/+6
|
* Deliver the static libunotest.a built for iOSTor Lillqvist2012-01-271-0/+1
|
* Use /assets as SRC_ROOT and OUTDIR_FOR_BUILD on AndroidTor Lillqvist2012-01-231-2/+2
|
* finish sd's regression testMarkus Mohrhard2012-01-192-0/+16
| | | | | Implemented a simple character based comparison of the exported file and the reference file
* build qadevOOo only if OOO_JUNIT_JAR are set (add BUILD_TYPE)Rene Engelhard2011-12-301-1/+1
|
* Use / as SRC_ROOT and OUTDIR_FOR_BUILD on AndroidTor Lillqvist2011-12-191-0/+5
|
* gcc-trunk: fix error: unable to find string literal operator 'operator"" FOO'Matúš Kukan2011-12-161-1/+1
|
* Handle unset workdir argument.Stephan Bergmann2011-12-161-1/+4
|
* create a base class for macros_testMarkus Mohrhard2011-11-274-0/+116
| | | | | | | | | For tests that need file import you can now choose between FiltersTest or MacrosTest as base class. FiltersTest imports through SfxObjectShell and does not have any ui MacrosTest imports through Desktop::LoadComponentFromURL and initializes the ui, therefore it needs to run headless
* remove debugcommand -- debugrun is superceding itBjoern Michaelsen2011-11-251-6/+0
|
* empty java stacktrace for soffice crashers, they are not interesting anywayBjoern Michaelsen2011-11-251-1/+14
|
* gdb stacktraces for subsequentchecksBjoern Michaelsen2011-11-251-28/+53
|
* New sal/log.h obsoletes osl/diagnose.h and tools/debug.hxx.Stephan Bergmann2011-11-222-56/+0
| | | | | | | | | | | * New SAL_INFO..., SAL_WARN... macros. * New SAL_STREAM supersedes OSL_FORMAT. * oustringostreaminserter.hxx moved from unotest to rtl (and always UTF-8 now). * TODO to enable GCC __attribute__((format)) in sal/log.h (requires call-site cleanup). * Further functionality in tools/debug.hxx (DBG_MEMTEST, DBG_CTOR, etc.) not yet addressed. * Some replacements tools String -> rtl::OUString.
* Do build the unoexceptionprotector also when cross-compilingTor Lillqvist2011-11-192-6/+2
|
* deliver test/user-template/user to solver, unittests will use new user dirNoel Power2011-10-272-3/+12
| | | | Please enter the commit message for your changes. Lines starting
* Some fixes for "clang version 3.1 (trunk 142234)" (with --enable-werror, on ↵Stephan Bergmann2011-10-181-0/+4
| | | | Linux x86_64).
* now drop not available yet includesCaolán McNamara2011-10-151-6/+0
|
* split bootstrapfixture and move test-filters class for sot testCaolán McNamara2011-10-157-1/+415
| | | | | | | sot is below vcl, but is a filters test, we can split bootstrapfixture into a vcl needing bit and and non-vcl bit and filters test api can be standalone and combined with whichever bit in order to form pre and post vcl filters test
* Rename and re-factor test and unotest to compile and run againMichael Meeks2011-09-2810-23/+16
|
* split 'test' into 'unotest' and 'test' to help dependenciesMichael Meeks2011-09-2830-0/+2302