diff --git a/tests/font/fonttest.cpp b/tests/font/fonttest.cpp index 2e9c3ebf9e..5f2c171c7f 100644 --- a/tests/font/fonttest.cpp +++ b/tests/font/fonttest.cpp @@ -109,7 +109,15 @@ void FontTestCase::GetSet() CPPUNIT_ASSERT( !test.SetFaceName("a dummy face name") ); CPPUNIT_ASSERT( !test.IsOk() ); - CPPUNIT_ASSERT( test.SetFaceName("Arial") ); + // if the call to SetFaceName() below fails on your system/port, + // consider adding another branch to this #if +#if defined(__WXMSW__) || defined(__WXOSX__) + static const char *knownGoodFaceName = "Arial"; +#else + static const char *knownGoodFaceName = "Fixed"; +#endif + + CPPUNIT_ASSERT( test.SetFaceName(knownGoodFaceName) ); CPPUNIT_ASSERT( test.IsOk() );