diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py index 50b47ad..2607ff4 100644 --- a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py +++ b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010 The Chromium Authors. All rights reserved. +# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -7,9 +7,8 @@ from autotest_lib.client.cros import chrome_test class desktopui_SyncIntegrationTests(chrome_test.ChromeTestBase): version = 1 - def run_once(self): - password_file = '%s/sync_password.txt' % self.bindir + binary_to_run = 'sync_integration_tests' + cmd_line_params = '--test-terminate-timeout=120000' - self.run_chrome_test('sync_integration_tests', - ('--password-file-for-test=%s ' + - '--test-terminate-timeout=300000') % password_file) + def run_once(self): + self.run_chrome_test(self.binary_to_run, self.cmd_line_params) |