Title: [123642] trunk/Tools
Revision
123642
Author
[email protected]
Date
2012-07-25 11:52:28 -0700 (Wed, 25 Jul 2012)

Log Message

[Chromium-Android] NRWT driver should not restart between reftests
https://bugs.webkit.org/show_bug.cgi?id=92267

Reviewed by Dirk Pranke.

* Scripts/webkitpy/layout_tests/port/chromium_android.py:
(ChromiumAndroidDriver.start): Resets self._pixel_tests when the pixel_tests parameter changes.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (123641 => 123642)


--- trunk/Tools/ChangeLog	2012-07-25 18:49:29 UTC (rev 123641)
+++ trunk/Tools/ChangeLog	2012-07-25 18:52:28 UTC (rev 123642)
@@ -1,3 +1,13 @@
+2012-07-25  Xianzhu Wang  <[email protected]>
+
+        [Chromium-Android] NRWT driver should not restart between reftests
+        https://bugs.webkit.org/show_bug.cgi?id=92267
+
+        Reviewed by Dirk Pranke.
+
+        * Scripts/webkitpy/layout_tests/port/chromium_android.py:
+        (ChromiumAndroidDriver.start): Resets self._pixel_tests when the pixel_tests parameter changes.
+
 2012-07-25  Tommy Widenflycht  <[email protected]>
 
         MediaStream API: Update MediaStreamTrack to match the specification

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py (123641 => 123642)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py	2012-07-25 18:49:29 UTC (rev 123641)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_android.py	2012-07-25 18:52:28 UTC (rev 123642)
@@ -499,6 +499,7 @@
         # The single driver needs to switch between pixel test and no pixel test mode by itself.
         if pixel_tests != self._pixel_tests:
             self.stop()
+            self._pixel_tests = pixel_tests
         super(ChromiumAndroidDriver, self).start(pixel_tests, per_test_args)
 
     def _start(self, pixel_tests, per_test_args):
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to