minutes of ESC call ...

David Ostrovsky d.ostrovsky at gmx.de
Fri May 29 00:20:53 PDT 2015


On Thu, May 28, 2015 at 11:16 AM, Michael Meeks
<michael.meeks at collabora.com> wrote:

>         + Windows 64 status (David O)
>            + all fine, poking some Base test with Stephan
>            + an OLE test, failing on some machines not others;
>              environment dependent. Thorsten's machine doesn't crash.

That is the exception not the rule.
I could not get a build to finish, and cloph also reproduce the ole bug.

Just rechecked: I'm not able to reproduce the failure: [1] on most
recent master. If I read the code correctly:

void VBATest::testMiscOLEStuff()
{
[...]
    if( xContext.is() )
    {
        uno::Reference<lang::XMultiComponentFactory> xSMgr =
xContext->getServiceManager();
        xOLEFactory = uno::Reference<lang::XMultiServiceFactory>(
            xSMgr->createInstanceWithContext(
                "com.sun.star.bridge.OleObjectFactory",
                xContext ), uno::UNO_QUERY );
    }
    bool bOk = false;
    if( xOLEFactory.is() )
    {
        uno::Reference< uno::XInterface > xExcel =
xOLEFactory->createInstance( "Excel.Application" );
        uno::Reference< uno::XInterface > xADODB =
xOLEFactory->createInstance( "ADODB.Connection" );
       bOk = xExcel.is() && xADODB.is();
    }
    if ( !bOk )
        return; // can't do anything, skip test

It's crashing during the load of UNO components, instead exiting with
"can't do anything, skip test" code path.

Can someone who can reproduce this failure debug it? Two options are
needed to activate 64bit windows build: [2].

Thanks!

[1] http://pastebin.com/2tRsXiQn
[2]
https://wiki.documentfoundation.org/Development/msvc-x86_64#Configure_options_known_to_work



More information about the LibreOffice mailing list