<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body smarttemplateinserted="true" bgcolor="#FFFFFF" text="#000000">
<div class="moz-cite-prefix">Hi Curtis,<br>
<br>
11/20/2016 4:46 AM, Curtis Hamilton пишет:<br>
</div>
<blockquote cite="mid:CAP9EAidr0_Rxb7HxoDpDU_0R=D1Ft=V=a6PnH4cFYkwxLQtFYg@mail.gmail.com" type="cite">
<div dir="ltr">
<div>I've tried building 5.2 with the suggested options disabled.  Everything seems to go okay until the module tests start.  Below is what I get:<br>
<br>
[CUT] binaryurp_test-cache<br>
/usr/ports/editors/libreoffice/work/libreoffice-5.2.3.3/basegfx/test/basegfx2d.cxx:145:basegfx2d::b2dsvgdimpex::impex<br>
assertion failed<br>
- Expression: aExport.equalsAscii(sExportString)<br>
- exporting rectangle to SVG-D<br>
<br>
/usr/ports/editors/libreoffice/work/libreoffice-5.2.3.3/basegfx/test/basegfx2d.cxx:825:basegfx2d::b2dpolygontools::testIsRectangle<br>
assertion failed<br>
- Expression: tools::isRectangle( aRect1 )<br>
- checking rectangle-ness of rectangle 1<br>
</div>
</div>
</blockquote>
<br>
AFAICS, you have expected problems porting to a new platform. The unit tests fail, and you need to investigate the cause and fix them to move to next failing unit tests :)<br>
<br>
<blockquote cite="mid:CAP9EAidr0_Rxb7HxoDpDU_0R=D1Ft=V=a6PnH4cFYkwxLQtFYg@mail.gmail.com" type="cite">
<div dir="ltr">
<div>...<br>
<br>
basegfx2d.cxx:145:Assertion<br>
Test name: basegfx2d::b2dsvgdimpex::impex<br>
assertion failed<br>
- Expression: aExport.equalsAscii(sExportString)<br>
- exporting rectangle to SVG-D<br>
</div>
</div>
</blockquote>
<br>
You may try to replace lines like<br>
        CPPUNIT_ASSERT_MESSAGE("exporting rectangle to SVG-D",<br>
                               aExport.equalsAscii(sExportString) );<br>
<br>
with that:<br>
        CPPUNIT_ASSERT_EQUAL_MESSAGE("exporting rectangle to SVG-D", OUString("m10 10h-20v-20h20z"), // contents of sExportString<br>
                               aExport);<br>
<br>
to enrich the assertion output.<br>
<br>
<div class="moz-signature">-- <br>
Best regards,<br>
Mike Kaganski</div>
<span class="st4cursor"></span>
</body>
</html>