Index: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py |
diff --git a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py |
index 38a3061315e2b52ba801f7ba8c04d998f3fe29ad..b914b2d2e5f28bec1784a6896ffca5a57afd0cc6 100644 |
--- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py |
+++ b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py |
@@ -49,7 +49,7 @@ _log = logging.getLogger(__name__) |
def main(argv, stdout, stderr): |
options, args = parse_args(argv) |
- if options.platform and 'test' in options.platform: |
+ if options.platform and 'test' in options.platform and not 'browser_test' in options.platform: |
# It's a bit lame to import mocks into real code, but this allows the user |
# to run tests against the test platform interactively, which is useful for |
# debugging test failures. |