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

Unified Diff: tools/testing/test_configuration.py

Issue 8608004: - Move generated_tests into the build output directory. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/test_configuration.py
===================================================================
--- tools/testing/test_configuration.py (revision 1692)
+++ tools/testing/test_configuration.py (working copy)
@@ -181,7 +181,8 @@
return {}
# Prepare directory for generated tests.
tests = {}
- generated_test_dir = os.path.join(self.context.workspace, 'generated_tests')
+ generated_test_dir = os.path.join(utils.GetBuildRoot(utils.GuessOS()),
+ 'generated_tests')
generated_test_dir = os.path.join(generated_test_dir, *test_path[:-1])
if not os.path.exists(generated_test_dir):
os.makedirs(generated_test_dir)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698