]> git.saurik.com Git - wxWidgets.git/commitdiff
use a different known good face name under non-MSW
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 17 May 2009 14:01:38 +0000 (14:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 17 May 2009 14:01:38 +0000 (14:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60676 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/font/fonttest.cpp

index 2e9c3ebf9e4cb02502f4646727d3b9b003dba44b..5f2c171c7f783633083f171758362c24895514de 100644 (file)
@@ -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() );