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

Unified Diff: client/deps/chrome_test/chrome_test.py

Issue 661476: Chrome's UI automation tests (browser_test) added as autotest (Closed)
Patch Set: minor fixes Created 10 years, 10 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 | « client/deps/chrome_test/README ('k') | client/deps/chrome_test/common.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/deps/chrome_test/chrome_test.py
diff --git a/client/deps/chrome_test/chrome_test.py b/client/deps/chrome_test/chrome_test.py
new file mode 100755
index 0000000000000000000000000000000000000000..411a7ae73b928195103dd86f45a8be9288fbca4c
--- /dev/null
+++ b/client/deps/chrome_test/chrome_test.py
@@ -0,0 +1,21 @@
+#!/usr/bin/python
+
+# 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 common, commands, logging, os
+from autotest_lib.client.bin import utils
+
+version = 1
+
+def setup(top_dir):
+ chrome_test_files = os.environ['SYSROOT'] + '/usr/local/autotest-chrome'
+ logging.info('Configuring chrome test resources in %s' % top_dir)
+ testsrc_dir = top_dir + '/test_src'
+
+ # Copy test build outputs.
+ utils.run('cp -r %s %s' % (chrome_test_files, testsrc_dir))
+
+pwd = os.getcwd()
+utils.update_version(pwd + '/src', False, version, setup, pwd)
« no previous file with comments | « client/deps/chrome_test/README ('k') | client/deps/chrome_test/common.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698