Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1874)

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/android.py

Issue 1212693002: Remove --enable-slimming-paint from layout test command line (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix unittest Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Tools/Scripts/webkitpy/layout_tests/port/base.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/layout_tests/port/android.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/android.py b/Tools/Scripts/webkitpy/layout_tests/port/android.py
index ea3e9a06083ba31d99ccb2311bec3f041ff59ed0..65feb52e02ddb845a9b6049d55eef09621464d5c 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/android.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/android.py
@@ -1066,13 +1066,7 @@ class ChromiumAndroidDriver(driver.Driver):
return self._android_commands.adb_command() + ['shell']
def _android_driver_cmd_line(self, pixel_tests, per_test_args):
- # FIXME: We can't enable slimming paint before crbug.com/439457 is fixed.
- cmd_line = driver.Driver.cmd_line(self, pixel_tests, per_test_args)
- if '--enable-slimming-paint' in cmd_line:
- _log.warning('Android port doesn\'t support slimming paint because of crbug.com/439457')
- cmd_line.remove('--enable-slimming-paint')
- cmd_line.append('--disable-slimming-paint')
- return cmd_line
+ return driver.Driver.cmd_line(self, pixel_tests, per_test_args)
@staticmethod
def _loop_with_timeout(condition, timeout_secs):
« no previous file with comments | « no previous file | Tools/Scripts/webkitpy/layout_tests/port/base.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698