Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Tools / Scripts / webkitpy / tool / commands / flakytests.py
index 852f8f7..0b3929a 100644 (file)
@@ -98,11 +98,11 @@ class FlakyTests(AbstractDeclarativeCommand):
         commit_message = self.COMMIT_MESSAGE % ','.join(reviewer_emails)
         git_cmd = ['git', 'commit', '-m', commit_message,
             tool.filesystem.join(tool.scm().checkout_root, flaky_tests_path)]
-        tool.executive.run_and_throw_if_fail(git_cmd)
+        tool.executive.run_command(git_cmd)
 
         git_cmd = ['git', 'cl', 'upload', '--send-mail', '-f',
             '--cc', ','.join(self.ALWAYS_CC)]
-        tool.executive.run_and_throw_if_fail(git_cmd)
+        tool.executive.run_command(git_cmd)
 
     def execute(self, options, args, tool):
         factory = self.expectations_factory()