summaryrefslogtreecommitdiff
path: root/sc/CppunitTest_sc_opencl_test.mk
AgeCommit message (Collapse)AuthorFilesLines
2014-06-26sort libraries and components in sc test makefilesMarkus Mohrhard1-5/+5
Change-Id: I38cda4e1ba520c9bb15f71b27543cb80fd696424
2014-06-04DeInitVCL at end of testsStephan Bergmann1-0/+1
This required some changes to the framework: * Init-/DeInitVCL is no longer done per individual test in BootstrapFixture, but once per CppunitTest invocation in a new vclbootstrapprotector (similarly to the exisiting unobootstrapprotector). CppunitTests that need VCL now need to declare gb_CppunitTest_use_vcl. * For things to work properly, the UNO component context needs to be disposed from within DeInitVCL (cf. Desktop's Application::DeInit called from DeInitVCL). The easiest solution was to introduce an Application::setDeInitHook (where the hook is called from DeInitVCL) specifically for vclbootstrapprotector to call. * PythonTests don't (yet) call DeInitVCL; they still hook into BootstrapFixture's original test_init functionality (to call InitVCL), and do not make use of the vclbootstrapprotector. Change-Id: I4f3a3c75db30b58c1cd49d81c51db14902ed68b2
2014-04-18Try making it possible to use --disable-avmedia for desktop platforms tooTor Lillqvist1-1/+0
Unfinished work in progress. Change-Id: I978755d73630b8653b169a53f937c1332799e22e
2013-12-31svx: Use constructor feature for SvXMLGraphicImportExportHelper.Matúš Kukan1-0/+1
Change-Id: Icc281ece80b81cdd95b6660c6a82077d283f5a62
2013-12-11fdo#60698: Merge fastsax and sax_shared into expwrapMarcos Paulo de Souza1-1/+0
Change-Id: I6f8c6827c00db50184a46f39968f882b944d18d4 Reviewed-on: https://gerrit.libreoffice.org/6967 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
2013-12-01OCppunitTest_sc_opencl_test: only depend on scopencl if ENABLE_OPENCL.Andrzej J.R. Hunt1-1/+1
scopencl is only built when ENABLE_OPENCL is true, but the unit test should still run successfully using the fallback mechanism without scopencl (i.e. when --disable-opencl is used). Change-Id: I4b44148f1f59ad8b3d9c78c2fd0e1cbe2030db37
2013-11-14This test opens the scopencl library dynamically, sighTor Lillqvist1-0/+1
Change-Id: I34c512573fcee108ab9b27a631671587665aad22
2013-10-29Rebase to calc-group-interpreter-4I-Jui (Ray) Sung1-2/+0
Change-Id: I4d98e88c4fcdf8c6e5ecbf31bc181dd186a85c9b
2013-10-29Initial testcase for dynamic kernel compilerI-Jui (Ray) Sung1-0/+116
Test the jitting compiler with a simple vector formula like C1=A1+B1*2 This stresses: 1) vector operations add, mul and, 2) simple constant and vector operands.