8f368a0d1a
- Version update to 5.2.0.0.beta1: * Disable support for sle11, not needed anymore * Cleanup the specfile from all the compat conditionals per above * Disable bundled help and point to upstream wiki always (speeds up build quite a bit) * Use pkgconfig style dependencies instead of the develpkgs * Remove all the bundled tarballs that were aedded for sle11 * Adjust the constraints a bit to reflect reality * Remove merged patches: * scp2-user-config-suse.diff * 0001-Make-HAVE_JAVA6-be-always-false.patch * 0001-mdds-1.0.patch * 0001-liborcus-0.11.patch * 0002-boost-filesystem1.patch * 0003-boost-filesystem2.patch * bnc856729.patch * bnc939998.patch * bnc945443.patch * bnc945445.patch * Refresh patches: * libreoffice-hotfix-disablebrokenshapetest.patch * system-pyuno.diff OBS-URL: https://build.opensuse.org/request/show/399630 OBS-URL: https://build.opensuse.org/package/show/LibreOffice:Factory/libreoffice?expand=0&rev=407
35 lines
1.6 KiB
Diff
35 lines
1.6 KiB
Diff
Index: libreoffice-5.2.0.0.alpha1/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx
|
|
===================================================================
|
|
--- libreoffice-5.2.0.0.alpha1.orig/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx
|
|
+++ libreoffice-5.2.0.0.alpha1/sw/qa/extras/ooxmlexport/ooxmlexport7.cxx
|
|
@@ -1103,29 +1103,6 @@ DECLARE_OOXMLEXPORT_TEST(testTDF93675, "
|
|
assertXPath(pXmlDoc, "//w:ind", "start", "1418");
|
|
}
|
|
|
|
-DECLARE_OOXMLEXPORT_TEST(testFlipAndRotateCustomShape, "flip_and_rotate.odt")
|
|
-{
|
|
- xmlDocPtr pXmlDoc = parseExport("word/document.xml");
|
|
- if (!pXmlDoc)
|
|
- return;
|
|
- // there should be no flipH and flipV attributes in this case
|
|
- assertXPathNoAttribute(pXmlDoc, "//a:xfrm", "flipH");
|
|
- assertXPathNoAttribute(pXmlDoc, "//a:xfrm", "flipV");
|
|
- // check rotation angle
|
|
- assertXPath(pXmlDoc, "//a:xfrm", "rot", "13500000");
|
|
- // check the first few coordinates of the polygon
|
|
-#ifndef MACOSX /* Retina-related rounding rountrip error
|
|
- * hard to smooth out due to the use of string compare
|
|
- * instead of number */
|
|
- assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[1]/a:pt", "x", "2351");
|
|
- assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[1]/a:pt", "y", "3171");
|
|
- assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[2]/a:pt", "x", "1695");
|
|
- assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[2]/a:pt", "y", "3171");
|
|
- assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[3]/a:pt", "x", "1695");
|
|
- assertXPath(pXmlDoc, "//a:custGeom/a:pathLst/a:path/a:lnTo[3]/a:pt", "y", "1701");
|
|
-#endif
|
|
-}
|
|
-
|
|
#endif
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|