diff options
author | Armin Le Grand <Armin.Le.Grand@Sun.COM> | 2010-02-09 12:13:51 +0100 |
---|---|---|
committer | Armin Le Grand <Armin.Le.Grand@Sun.COM> | 2010-02-09 12:13:51 +0100 |
commit | b6fc86ab5ed6308bf6301239024ebc2ee743deaf (patch) | |
tree | 85a21ffc25bdb190a7f0679f14911a0ca1d07974 /basegfx | |
parent | 1dde425a12be0ea92ada5152e0d40b4ac9358f1c (diff) | |
parent | da2c680d23b67d4721aa29f740475fd6d40e2e08 (diff) |
aw069 changes after resync to m71#
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/test/basegfx2d.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/basegfx/test/basegfx2d.cxx b/basegfx/test/basegfx2d.cxx index 1bd15702e143..b592a0e84ea6 100644 --- a/basegfx/test/basegfx2d.cxx +++ b/basegfx/test/basegfx2d.cxx @@ -489,8 +489,11 @@ public: // depending on float precision and the getContinuity() implemetation using // 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 + CPPUNIT_ASSERT_MESSAGE("exporting to circle does not produce the expected number of coordinates", nCount==61 ); +#else + CPPUNIT_ASSERT_MESSAGE("exporting to circle does not produce the expected number of coordinates", nCount==67 || nCount==50 ); +#endif const B2DPolygon aRect( tools::createPolygonFromRect( B2DRange(0.0,0.0,4000.0,4000.0) )); |