diff options
author | Caolán McNamara <cmc@openoffice.org> | 2010-01-18 15:37:42 +0000 |
---|---|---|
committer | Caolán McNamara <cmc@openoffice.org> | 2010-01-18 15:37:42 +0000 |
commit | 37375c0464d0912ea7b173a99f9cbbc47bd93de4 (patch) | |
tree | b4ec1fe5f51c76a2cb2bc356bd510e8b8efdb69f /basegfx/test | |
parent | 8765a3bf9f2926a50d0f644e4263782269abe023 (diff) |
s390xport02: #i108410# different results for s390x
Diffstat (limited to 'basegfx/test')
-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) )); |