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

Unified Diff: au_test_harness/au_test.py

Issue 6675015: Modify au_test_harness and ctest to work from new location. (Closed) Base URL: http://git.chromium.org/git/crostestutils.git@master
Patch Set: Created 9 years, 9 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 | « no previous file | au_test_harness/au_worker.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: au_test_harness/au_test.py
diff --git a/au_test_harness/au_test.py b/au_test_harness/au_test.py
index 47aad12500a257163be27d3456288262ac36f4eb..cc161e042dc3b32ef923e5dd2ba50b1f04c32fe3 100644
--- a/au_test_harness/au_test.py
+++ b/au_test_harness/au_test.py
@@ -116,8 +116,8 @@ class AUTest(unittest.TestCase):
"""
unittest.TestCase.setUp(self)
self.worker = self.worker_class(self.options, AUTest.test_results_root)
- self.crosutils = os.path.join(os.path.dirname(__file__), '..', '..')
- self.download_folder = os.path.join(self.crosutils, 'latest_download')
+ self.download_folder = os.path.join(os.path.realpath(os.path.curdir),
+ 'latest_download')
if not os.path.exists(self.download_folder):
os.makedirs(self.download_folder)
« no previous file with comments | « no previous file | au_test_harness/au_worker.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698