Title: [149092] trunk/Tools
Revision
149092
Author
[email protected]
Date
2013-04-24 22:41:07 -0700 (Wed, 24 Apr 2013)

Log Message

Remove checking chromium from run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=115139

Patch by Seokju Kwon <[email protected]> on 2013-04-24
Reviewed by Benjamin Poulain.

* Scripts/run-webkit-tests:
(useNewRunWebKitTests):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (149091 => 149092)


--- trunk/Tools/ChangeLog	2013-04-25 05:30:36 UTC (rev 149091)
+++ trunk/Tools/ChangeLog	2013-04-25 05:41:07 UTC (rev 149092)
@@ -1,3 +1,13 @@
+2013-04-24  Seokju Kwon  <[email protected]>
+
+        Remove checking chromium from run-webkit-tests
+        https://bugs.webkit.org/show_bug.cgi?id=115139
+
+        Reviewed by Benjamin Poulain.
+
+        * Scripts/run-webkit-tests:
+        (useNewRunWebKitTests):
+
 2013-04-24  Simon Fraser  <[email protected]>
 
         Pixel tests in SVG are all broken in WK2

Modified: trunk/Tools/Scripts/run-webkit-tests (149091 => 149092)


--- trunk/Tools/Scripts/run-webkit-tests	2013-04-25 05:30:36 UTC (rev 149091)
+++ trunk/Tools/Scripts/run-webkit-tests	2013-04-25 05:41:07 UTC (rev 149092)
@@ -58,7 +58,7 @@
 sub useNewRunWebKitTests()
 {
     # NRWT Windows support still needs work: https://bugs.webkit.org/show_bug.cgi?id=38756
-    return 0 if (isWindows() or isCygwin()) and !isChromium();
+    return 0 if isWindows() or isCygwin();
     # NRWT does not support qt-arm: https://bugs.webkit.org/show_bug.cgi?id=64086
     return 0 if isQt() and isARM();
     # All other platforms should use NRWT by default.
@@ -92,10 +92,6 @@
     push(@ARGV, "--gtk");
 } elsif (isEfl()) {
     push(@ARGV, "--efl");
-} elsif (isChromiumAndroid()) {
-    push(@ARGV, "--chromium-android");
-} elsif (isChromium()) {
-    push(@ARGV, "--chromium");
 } elsif (isWinCairo()) {
     push(@ARGV, "--wincairo");
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to