diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-08 10:44:03 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-09-08 12:50:28 +0200 |
commit | dc2bcaa3967095044f025855ec95436d501554f2 (patch) | |
tree | 8f9f5398a9b54ffed665882c2ed5545a2c4f246d /sd | |
parent | 7117e92448ea328bd4798e873a2faecda748a369 (diff) |
Disable test on Linux x86 that makes plain 'make' fail due to -mpfmath=387
...rounding issues, and thus caused LO Flathub builds to fail, see
<https://flathub.org/builds/#/builders/3/builds/280>.
Change-Id: I91e8662e0a85b4ed8b16719eed4ade3397edfa0c
(cherry picked from commit c799497959f82c84ddaf032b096d1a3f8d6e2bcd)
Conflicts:
sd/qa/unit/import-tests.cxx
Reviewed-on: https://gerrit.libreoffice.org/42093
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/qa/unit/import-tests.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sd/qa/unit/import-tests.cxx b/sd/qa/unit/import-tests.cxx index cf7fd53f731c..fd3b5721af27 100644 --- a/sd/qa/unit/import-tests.cxx +++ b/sd/qa/unit/import-tests.cxx @@ -288,7 +288,14 @@ void SdImportTest::testDocumentLayout() { "tdf90403.pptx", "xml/tdf90403_", PPTX, -1 }, { "tdf90338.odp", "xml/tdf90338_", ODP, PPTX }, { "tdf92001.odp", "xml/tdf92001_", ODP, PPTX }, +// GCC -mpfmath=387 rounding issues in lclPushMarkerProperties +// (oox/source/drawingml/lineproperties.cxx); see mail sub-thread starting at +// <https://lists.freedesktop.org/archives/libreoffice/2016-September/ +// 075211.html> "Re: Test File: sc/qa/unit/data/functions/fods/chiinv.fods: +// fails with Assertion" for how "-mfpmath=sse -msse2" would fix that: +#if !(defined LINUX && defined X86) { "tdf100491.pptx", "xml/tdf100491_", PPTX, -1 }, +#endif // { "pptx/n828390.pptx", "pptx/xml/n828390_", PPTX, PPTX }, // Example }; |