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

Unified Diff: client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py

Issue 3209004: Moved chrome autotests to chromium depot (Closed) Base URL: ssh://gitrw.chromium.org/autotest.git
Patch Set: updates Created 10 years, 4 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
Index: client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py
diff --git a/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py b/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py
deleted file mode 100644
index 7bd3ef8e105da8085b06e3e79d2b56a591fd3ca9..0000000000000000000000000000000000000000
--- a/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import logging, os, utils
-from autotest_lib.client.bin import test
-from autotest_lib.client.common_lib import error, site_ui
-
-class desktopui_SyncIntegrationTests(test.test):
- version = 1
-
- def setup(self):
- self.job.setup_dep(['chrome_test'])
- # create a empty srcdir to prevent the error that checks .version file
- if not os.path.exists(self.srcdir):
- os.mkdir(self.srcdir)
-
-
- def run_once(self):
- dep = 'chrome_test'
- dep_dir = os.path.join(self.autodir, 'deps', dep)
- self.job.install_pkg(dep, 'dep', dep_dir)
-
- chrome_dir = '/opt/google/chrome'
- test_binary_dir = '%s/test_src/out/Release' % dep_dir
- password_file = '%s/sync_password.txt' % dep_dir
-
- try:
- setup_cmd = '%s/%s' % (test_binary_dir,
- 'setup_test_links.sh')
- utils.system(setup_cmd)
-
- cmd = '%s/sync_integration_tests --password-file-for-test=%s --test-terminate-timeout=300000' % (test_binary_dir, password_file)
- cmd = site_ui.xcommand(cmd)
- logging.info("Running %s" % cmd)
- utils.system(cmd)
- except error.CmdError, e:
- logging.debug(e)
- raise error.TestFail('sync_integration_tests failed.')
« no previous file with comments | « client/site_tests/desktopui_SyncIntegrationTests/control ('k') | client/site_tests/desktopui_UITest/control » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698