Title: [106466] trunk/Tools
Revision
106466
Author
[email protected]
Date
2012-02-01 06:54:32 -0800 (Wed, 01 Feb 2012)

Log Message

Unreviewed, rolling out r106460.
http://trac.webkit.org/changeset/106460
https://bugs.webkit.org/show_bug.cgi?id=77552

It break unit tests if WEBKIT_TESTFONTS isn't defined.
(Requested by Ossy on #webkit).

Patch by Sheriff Bot <[email protected]> on 2012-02-01

* Scripts/webkitpy/layout_tests/port/qt.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (106465 => 106466)


--- trunk/Tools/ChangeLog	2012-02-01 13:50:25 UTC (rev 106465)
+++ trunk/Tools/ChangeLog	2012-02-01 14:54:32 UTC (rev 106466)
@@ -1,3 +1,14 @@
+2012-02-01  Sheriff Bot  <[email protected]>
+
+        Unreviewed, rolling out r106460.
+        http://trac.webkit.org/changeset/106460
+        https://bugs.webkit.org/show_bug.cgi?id=77552
+
+        It break unit tests if WEBKIT_TESTFONTS isn't defined.
+        (Requested by Ossy on #webkit).
+
+        * Scripts/webkitpy/layout_tests/port/qt.py:
+
 2012-02-01  NĂ¡ndor Huszka  <[email protected]>
 
         [Qt] Automatic clean build feature always do clean build with --no-webkit2

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/qt.py (106465 => 106466)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/qt.py	2012-02-01 13:50:25 UTC (rev 106465)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/qt.py	2012-02-01 14:54:32 UTC (rev 106466)
@@ -31,7 +31,6 @@
 import logging
 import re
 import sys
-import os
 
 import webkit
 
@@ -133,11 +132,6 @@
         return None
 
     def setup_environ_for_server(self, server_name=None):
-        if not 'WEBKIT_TESTFONTS' in os.environ:
-            print "\n\nThe WEBKIT_TESTFONTS environment variable is not defined or not set properly"
-            print "You must set it before running the tests."
-            print "Use git to grab the actual fonts from http://gitorious.org/qtwebkit/testfonts\n"
-            sys.exit(1)
         clean_env = WebKitPort.setup_environ_for_server(self, server_name)
         clean_env['QTWEBKIT_PLUGIN_PATH'] = self._build_path('lib/plugins')
         self._copy_value_from_environ_if_set(clean_env, 'QT_DRT_WEBVIEW_MODE')
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to