diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2010-01-27 17:23:00 +0100 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2010-01-27 17:23:00 +0100 |
commit | 756caba02195e1ed76c9ed5442cd6361ae7e329f (patch) | |
tree | b615b87aa710a305e7025a464c9584b56314bd5c | |
parent | da5fdc46b8d8aa2a32bb0ccdbc768b7e96ba273f (diff) | |
parent | 37375c0464d0912ea7b173a99f9cbbc47bd93de4 (diff) |
CWS-TOOLING: integrate CWS s390xport02
-rw-r--r-- | basegfx/test/basegfx2d.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/basegfx/test/basegfx2d.cxx b/basegfx/test/basegfx2d.cxx index 1bd15702e143..61c02e8ccdd2 100644 --- a/basegfx/test/basegfx2d.cxx +++ b/basegfx/test/basegfx2d.cxx @@ -490,7 +490,12 @@ public: // fTools::equal, linux and mac produce more 'C' than 'S' statements, while WIN32 // uses more 'S' statements (as it should be for circles) CPPUNIT_ASSERT_MESSAGE("exporting to circle does not produce the expected number of coordinates", - nCount==67 || nCount==50); +#ifdef S390X + nCount==61 +#else + nCount==67 || nCount==50 +#endif + ); const B2DPolygon aRect( tools::createPolygonFromRect( B2DRange(0.0,0.0,4000.0,4000.0) )); |