Title: [116412] trunk/Tools
Revision
116412
Author
[email protected]
Date
2012-05-08 06:29:43 -0700 (Tue, 08 May 2012)

Log Message

Unreviewed. Fix GTK+ unit tests.

* gtk/common.py:
(pkg_config_file_variable):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (116411 => 116412)


--- trunk/Tools/ChangeLog	2012-05-08 10:04:33 UTC (rev 116411)
+++ trunk/Tools/ChangeLog	2012-05-08 13:29:43 UTC (rev 116412)
@@ -1,5 +1,12 @@
 2012-05-08  Carlos Garcia Campos  <[email protected]>
 
+        Unreviewed. Fix GTK+ unit tests.
+
+        * gtk/common.py:
+        (pkg_config_file_variable):
+
+2012-05-08  Carlos Garcia Campos  <[email protected]>
+
         [GTK] Google tests that time out are leaked
         https://bugs.webkit.org/show_bug.cgi?id=84973
 

Modified: trunk/Tools/gtk/common.py (116411 => 116412)


--- trunk/Tools/gtk/common.py	2012-05-08 10:04:33 UTC (rev 116411)
+++ trunk/Tools/gtk/common.py	2012-05-08 13:29:43 UTC (rev 116412)
@@ -84,7 +84,7 @@
     process = subprocess.Popen(['pkg-config', '--variable=%s' % variable, package],
                                stdout=subprocess.PIPE)
     stdout = process.communicate()[0]
-    if not process.returncode:
+    if process.returncode:
         return None
     return stdout.strip()
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to