You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openoffice.apache.org by bu...@apache.org on 2016/04/10 14:06:43 UTC

[Issue 126918] New: windows build breaks in module crashrep - Assertion Failed

https://bz.apache.org/ooo/show_bug.cgi?id=126918

          Issue ID: 126918
        Issue Type: DEFECT
           Summary: windows build breaks in module crashrep - Assertion
                    Failed
           Product: Build Tools
           Version: 4.2.0-dev
          Hardware: All
                OS: All
            Status: CONFIRMED
          Severity: Normal
          Priority: P5 (lowest)
         Component: dmake
          Assignee: issues@openoffice.apache.org
          Reporter: oliver.brinzing@gmx.de

to continue build, press 'No'

autoconf
./configure \
--with-build-version="$(date +"%Y-%m-%d %H:%M:%S %z (%a, %d %b %Y)")" \
--with-vendor="AOO Debug Build" \
--with-dmake-url="http://dmake.apache-extras.org.codespot.com/files/dmake-4.12.tar.bz2"
\
--with-ant-home="/cygdrive/c/build/ant" \
--with-mozilla-build="/cygdrive/c/build/mozilla-build" \
--with-frame-home="/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0" \
--with-psdk-home="/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0" \
--with-midl-path="/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0/bin" \
--with-cl-home="/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 9.0/VC"
 \
--with-mspdb-path="/cygdrive/c/Program Files (x86)/Microsoft Visual Studio
9.0/Common7/IDE" \
--with-asm-home="/cygdrive/c/Program Files (x86)/Microsoft Visual Studio
9.0/VC/bin" \
--with-csc-path="/cygdrive/c/Windows/Microsoft.NET/Framework/v3.5" \
--with-jdk-home="/cygdrive/c/Program Files (x86)/Java/jdk1.7.0"  \
--with-nsis-path="/cygdrive/c/Program Files (x86)/NSIS/Unicode" \
--with-directx-home="/cygdrive/c/Program Files (x86)/Microsoft DirectX SDK
(June 2010)" \
--with-atl-include-dir="/cygdrive/c/WinDDK/7600.16385.1/inc/atl71" \
--with-atl-lib-dir="/cygdrive/c/WinDDK/7600.16385.1/lib/ATL/i386" \
--with-mfc-include-dir="/cygdrive/c/WinDDK/7600.16385.1/inc/mfc42" \
--with-mfc-lib-dir="/cygdrive/c/WinDDK/7600.16385.1/lib/Mfc/i386" \
--enable-pch \
--with-package-format="installed msi" \
--enable-win-x64-shellext \
--enable-category-b \
--enable-bundled-dictionaries \
--with-lang="de" \
--without-stlport \
--without-junit \
--enable-verbose \
--disable-odk \
--without-fonts \
--disable-online-update \
--disable-strip-solver \
--enable-symbols \
--enable-dbgutil \
--enable-crashdump \
--enable-debug

Building module crashrep
Entering /cygdrive/c/build_tmp/aoo_src/main/crashrep/source/all
mkout -- version: 1.8
Entering /cygdrive/c/build_tmp/aoo_src/main/crashrep/source/win32
crashrep deliver

Assertion Failed!
Error: File C:/build_tmp/aoo_src/main/sal/osl/w32/process.cxx, 
Line 340 :(null)
( Yes=Abort / No=Ignore / Cancel=Debugger )

/***************************************************************************/
sal_uInt32 SAL_CALL osl_getCommandArgCount(void)
{
    sal_uInt32 result = 0;

    osl_acquireMutex (*osl_getGlobalMutex());
    OSL_ASSERT(g_command_args.m_nCount > 0);
    if (g_command_args.m_nCount > 0)
    {
        /* We're not counting argv[0] here. */
        result = g_command_args.m_nCount - 1;
    }
    osl_releaseMutex (*osl_getGlobalMutex());

    return (result);
}
/***************************************************************************/

-- 
You are receiving this mail because:
You are the assignee for the issue.

[Issue 126918] windows build breaks in module crashrep - Assertion Failed

Posted by bu...@apache.org.
https://bz.apache.org/ooo/show_bug.cgi?id=126918

--- Comment #4 from SVN Robot <sv...@dev.null.org> ---
"damjan" committed SVN revision 1747758 into trunk:
#i126918# - windows build breaks in module crashrep - Assertion Failed

-- 
You are receiving this mail because:
You are the assignee for the issue.

[Issue 126918] windows build breaks in module crashrep - Assertion Failed

Posted by bu...@apache.org.
https://bz.apache.org/ooo/show_bug.cgi?id=126918

Oliver Brinzing <ol...@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |oliver.brinzing@gmx.de
           Hardware|All                         |PC
                 OS|All                         |Windows 7

-- 
You are receiving this mail because:
You are the assignee for the issue.

[Issue 126918] windows build breaks in module crashrep - Assertion Failed

Posted by bu...@apache.org.
https://bz.apache.org/ooo/show_bug.cgi?id=126918

damjan@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |damjan@apache.org

--- Comment #2 from damjan@apache.org ---
But crashrep doesn't have unit tests. What is getting that assertion?

-- 
You are receiving this mail because:
You are the assignee for the issue.

[Issue 126918] windows build breaks in module crashrep - Assertion Failed

Posted by bu...@apache.org.
https://bz.apache.org/ooo/show_bug.cgi?id=126918

Oliver Brinzing <ol...@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|dmake                       |configure

--- Comment #1 from Oliver Brinzing <ol...@gmx.de> ---
seems to be caused by changing from cppunit to Googletest
https://wiki.openoffice.org/wiki/Googletest

workaround: use "--disable-unit-tests" during configure

-- 
You are receiving this mail because:
You are the assignee for the issue.

[Issue 126918] windows build breaks in module crashrep - Assertion Failed

Posted by bu...@apache.org.
https://bz.apache.org/ooo/show_bug.cgi?id=126918

--- Comment #6 from Oliver Brinzing <ol...@gmx.de> ---
i can no longer confirm this issue with svn revision 1747860

-- 
You are receiving this mail because:
You are the assignee for the issue.

[Issue 126918] windows build breaks in module crashrep - Assertion Failed

Posted by bu...@apache.org.
https://bz.apache.org/ooo/show_bug.cgi?id=126918

--- Comment #3 from Oliver Brinzing <ol...@gmx.de> ---
only aoo420 debug builds are affected - aoo412 debug builds fine.

maybe you had already an idea a month ago ;-)
https://www.mail-archive.com/dev@openoffice.apache.org/msg26845.html

-- 
You are receiving this mail because:
You are the assignee for the issue.

[Issue 126918] windows build breaks in module crashrep - Assertion Failed

Posted by bu...@apache.org.
https://bz.apache.org/ooo/show_bug.cgi?id=126918

damjan@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|CONFIRMED                   |RESOLVED
         Resolution|---                         |FIXED

--- Comment #5 from damjan@apache.org ---
Assertion logic is different on different operating systems. The way to disable
messageboxes on all is apparently via setting the environment variable
DISABLE_SAL_DBGBOX=1, not DBGSV_ERROR_OUT=1.

Patches committed, resolving fixed.

-- 
You are receiving this mail because:
You are the assignee for the issue.