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

Unified Diff: chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py

Issue 5560011: Fix pyauto tests launcher on chromeos. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync change Created 10 years 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 | « no previous file | chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py
diff --git a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py
index 2cba5f1f6f45836dfe48c63638ee3fb6581a215a..7588ef522f05ac76ae9c17335d6efc36e3d7db98 100644
--- a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py
+++ b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_PyAutoFunctionalTests/desktopui_PyAutoFunctionalTests.py
@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import os
from autotest_lib.client.bin import site_chrome_test
class desktopui_PyAutoFunctionalTests(site_chrome_test.ChromeTestBase):
@@ -9,6 +10,8 @@ class desktopui_PyAutoFunctionalTests(site_chrome_test.ChromeTestBase):
version = 1
def run_once(self):
+ deps_dir = os.path.join(self.autodir, 'deps')
+ self.test_binary_dir = ''
pyauto_script = '%s/test_src/chrome/test/functional/' \
- 'pyauto_functional.py' % self.dep_dir
+ 'pyauto_functional.py' % deps_dir
self.run_chrome_test(pyauto_script)
« no previous file with comments | « no previous file | chrome/test/chromeos/autotest/files/client/site_tests/desktopui_SyncIntegrationTests/desktopui_SyncIntegrationTests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698