summaryrefslogtreecommitdiff
path: root/testtools
AgeCommit message (Collapse)AuthorFilesLines
2015-08-06ppc64: using a fp register also consumes a gp register slotCaolan McNamara5-0/+21
Change-Id: Idf6f40081f4598c0fa9d1e10bdc208eae49e4cd1 Reviewed-on: https://gerrit.libreoffice.org/16936 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com> (cherry picked from commit e8ac3b5bd973054c6fd74db017bb448721e2c3e2) Reviewed-on: https://gerrit.libreoffice.org/16946 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2015-05-08Clean up checks of sal_Bool valuesStephan Bergmann1-2/+2
Change-Id: Ia05565077823d6efaeaeb35d3d80b51dd9a10d4c
2015-04-27More loplugin:simplifyboolStephan Bergmann1-1/+1
Change-Id: I8d8d6220ff597ce416042fe03d86a7e7bb0a3518
2015-04-01Replace remaining getCppuType et al with cppu::UnoTypeStephan Bergmann3-32/+32
Change-Id: I02c70b26b82d2d0357111a127aefc57d3be21320
2015-03-31Reduce to static_cast any reinterpret_cast from void pointersStephan Bergmann1-1/+1
Change-Id: If19e6222cc7dea2a3a4692d2d4cb43ccc46243a2
2015-03-04V813: Decreased performanceCaolán McNamara1-2/+2
Change-Id: I8a7528366156b288dc422b09cff0d5a32cde3c91
2015-02-27testtools: mark CurrentContextChecker as DLLPRIVATEMichael Stahl1-1/+1
The problem is that currentcontextchecker.cxx is linked statically into 2 dynamic libraries, and with clang now using -fvisibility-ms-compat since commit f0aa1a78fb209310e8baef53c02f365fca518d11 the ASAN complains about ODR violation in testttols uno_test: ==1818==ERROR: AddressSanitizer: odr-violation (0x2aef08e9c600): [1] size=192 'vtable for testtools::bridgetest::CurrentContextChecker' testtools/source/bridgetest/currentcontextchecker.cxx [2] size=192 'vtable for testtools::bridgetest::CurrentContextChecker' testtools/source/bridgetest/currentcontextchecker.cxx Change-Id: Ie705788dbf035f7a9f64878c6dcf3cec9b7e7ba1
2015-02-07loplugin:deletedspecialStephan Bergmann1-2/+2
Change-Id: I9cdb0d7cb2bb9207923f2beedef0bbe44451fb6f
2015-01-20Some more loplugin:cstylecast: testtoolsStephan Bergmann1-4/+4
Change-Id: I28bce2f4bdbadef2d68130adc6fdc09c9840a005
2015-01-02boost::unordered_map->std::unordered_mapCaolán McNamara1-4/+2
you can get debug stl this way Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19
2014-12-18testtools: Use appropriate OUString functions on string constantsStephan Bergmann2-3/+2
Change-Id: I4258287401e76a2f37f88eeeba5aa11d693a01b8
2014-12-16testtools: Use appropriate OUString functions on string constantsStephan Bergmann2-6/+6
Change-Id: Iacc67a087321e9cf0f699f4eecb334eb7372b885
2014-12-12testtools: Use appropriate OUString functions on string constantsStephan Bergmann2-6/+3
Change-Id: I5cb34d95e2a59ff6a3f5189beb40b7dbf574dc29
2014-12-11java: reduce visibility of fields and methodsNoel Grandin3-4/+4
found by PMD Change-Id: Id6737916b68ccbdbdeec5d314747a38410923ac6 Reviewed-on: https://gerrit.libreoffice.org/13409 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2014-12-05java: remove some unused fieldsNoel Grandin1-5/+0
Change-Id: I1b6fb6b47439c448ac31983702772e2115c70d56
2014-11-27Remove dead dmake makefile.mkStephan Bergmann1-50/+0
Change-Id: If57799fb00ce55818658cce375e1ab0244372772
2014-11-06Revert "use the new OUString::fromUtf8 method"Stephan Bergmann1-1/+3
This reverts commit 05050cdb23de586870bf479a9df5ced06828d498, not all places that use e.g. OStringToOUString to convert potential UTF-8 are guaranteed to fulfil the prerequisites necessary to use fromUtf8 (and some places like e.g. in codemaker are happy with the best-effort effect of OStringToOUString's OSTRING_TO_OUSTRING_CVTFLAGS).
2014-11-06use the new OUString::fromUtf8 methodNoel Grandin1-3/+1
Change-Id: I771004b7ccab3344a67e827e45bc34c22ffa5f77
2014-10-16java: when rethrowing, store the original exceptionNoel Grandin1-4/+4
Change-Id: I34ce000c48d2d79bfec854c8dd55d12f2bee29c7
2014-10-07java: remove unnecessary adding of empty stringsNoel Grandin1-1/+1
Change-Id: I3825ea5fb1eb34ca52659350e202f95abea945a9
2014-09-18Use instsetoo_native-generated uno ini-file for both instdir and instsetsStephan Bergmann1-1/+1
Change-Id: I8aa839fbe621fed798a9d3a33975cbd202fba656
2014-09-16Missing dependency on uno ini-fileStephan Bergmann1-0/+1
Change-Id: I5766aa66da700d5e2962f65510e047655d13a218
2014-08-20remove more unnecessary constructor declarationsNoel Grandin1-1/+1
Change-Id: Ie5a243006b112c2e6daf12992f3dba8baf12748d
2014-08-20java: don't catch and then just rethrow an exceptionNoel Grandin1-10/+3
without doing anything else useful Change-Id: I5803d84d46e0a70e1759f2202e2c2273087f8723
2014-08-19java: use 'Byte.valueOf' instead of 'new Byte'Noel Grandin1-2/+2
Change-Id: Ia99765a6226317ee41ffb02a1b0dd7e6fd944a90
2014-08-19java: use 'Short.valueOf' instead of 'new Short'Noel Grandin1-3/+3
Change-Id: Icef19ef61ee0af2dd3bda527263934006271f219
2014-08-19java: use 'Long.valueOf' instead of 'new Long'Noel Grandin1-3/+3
Change-Id: If4fff3dd37326fbcdd01b743355a16591d71fa69
2014-08-19java: use 'Integer.valueOf' instead of 'new Integer'Noel Grandin2-8/+8
Change-Id: Ia8befb8d69914ce971174fc5f2ffc0e2f506a940
2014-08-19java: use Boolean.valueOf instead of instantiating Boolean objectsNoel Grandin1-1/+1
Change-Id: Ie41d6b0170a035a694dd270c311a137fd1810e74
2014-08-14java: remove commented out codeNoel Grandin2-124/+6
Change-Id: I05c907a38b562231e968c17f14e09ef80e0a6ed1
2014-08-12java: add @Override annotation to overriding methodsNoel Grandin5-0/+8
Change-Id: I086964c6f6ce52c60c52b6dbc445d3c21d22c80a
2014-08-08java: use an empty block rather than an empty statementNoel Grandin2-2/+2
Change-Id: I05e60964521d6ec3694483816d91359fb12c8e4b
2014-08-08java: remove unused variablesNoel Grandin3-9/+4
Change-Id: I1b04fbf4d4562ff8e74f6ccdb2fd989d79cc869b
2014-08-05java: remove commented out codeNoel Grandin3-7/+0
Change-Id: I44e2043e5da23bc9421c03e550ef1d8b7ebaad36
2014-06-05various: remove SAL_THROW macroNoel Grandin1-2/+0
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
2014-05-23remove boilerplate in UNO Exception constructor callsNoel Grandin2-32/+19
Now that we have default values for Exception constructor params, remove lots of boilerplate code. Change-Id: I620bd641eecfed38e6123873b3b94aaf47922e74
2014-05-15Resolves fdo#70681: fixincludeguards.pl: all that's leftThomas Arnhold1-2/+2
Change-Id: I3e51a62710bb46c8255fd228d41d9300c90a1fb5 Reviewed-on: https://gerrit.libreoffice.org/9360 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-08various: sal_Bool->boolNoel Grandin3-23/+23
Change-Id: I30fa5227f30373f95060148f269450d2945c1bb9
2014-04-28prefer makefile-gmake-modeTakeshi Abe1-1/+1
Change-Id: I9cc9bfbddd3a90e00eee3e674994e5d6207f9034
2014-04-09Clean up function declarationsStephan Bergmann3-9/+10
Change-Id: Ia4ed1d576cb3bcf46de3225e5569f9cfd15a6f7e
2014-04-03remove unnecessary scope qualifier from sal_Bool usesNoel Grandin3-13/+13
i.e. convert "::sal_Bool" to "sal_Bool" Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
2014-03-29typo: inteface -> interfaceThomas Arnhold1-1/+1
2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann6-132/+132
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
2014-03-10testtools: simplify deprecated XTypeProvider.getImplementationIdStephan Bergmann1-2/+2
Change-Id: I2ab505962c64711d72f2a6b4cdebaef2f1bf4439
2014-02-27normalize values of CROSS_COMPILINGMichael Stahl1-1/+1
Change-Id: I0cc43cef91e3fcd82a3558a16ab0afbd4d56b141
2014-02-27Remove visual noise from testtoolsAlexander Wilms9-53/+53
Change-Id: Idbf31a46a9e174b96b3cac76be6a01a6ada0abde Reviewed-on: https://gerrit.libreoffice.org/8325 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann6-180/+180
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
2014-02-23Remove unneccessary commentsAlexander Wilms5-66/+66
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-02-10Typo: execption -> exceptionJulien Nabet1-1/+1
Change-Id: Ib57e0cc39c27595490e29dec46cc6d33067c34b5
2014-02-04gbuild: component files for Jars in NONE layer and move testComponentMichael Stahl1-1/+1
... from URE to NONE. Change-Id: If43e07b88f2ab0e845f77d1f1a835627e5c48dd7