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

Unified Diff: samples/third_party/dromaeo/generate_frog_tests.py

Issue 9958051: Add support for Dromaeo tests in perf scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add to uploaded data. Created 8 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 | tools/testing/perf_testing/index.html » ('j') | tools/testing/perf_testing/run_perf_tests.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/third_party/dromaeo/generate_frog_tests.py
diff --git a/samples/third_party/dromaeo/generate_frog_tests.py b/samples/third_party/dromaeo/generate_frog_tests.py
index 069336955f0a1a2ec1cb56a384de51a18d7d343a..b541664f17fb24de54b4941c041ecabcfa3d997f 100755
--- a/samples/third_party/dromaeo/generate_frog_tests.py
+++ b/samples/third_party/dromaeo/generate_frog_tests.py
@@ -18,10 +18,9 @@ def Compile(source, target):
binary = os.path.abspath(os.path.join(DART_PATH,
utils.GetBuildRoot(utils.GuessOS(),
'release', 'ia32'),
- 'frog', 'bin', 'frogsh'))
+ 'dart-sdk', 'bin', 'frogc'))
Emily Fortuna 2012/04/02 21:27:41 The reason I was getting a File not Found for thes
vsm 2012/04/02 22:16:19 Thanks for the catch. Added a makedirs if the pat
cmd = [binary, '--compile-only',
- '--libdir=' + os.path.join(DART_PATH, 'frog', 'lib'),
'--out=' + target]
cmd.append(source)
print 'Executing: ' + ' '.join(cmd)
« no previous file with comments | « no previous file | tools/testing/perf_testing/index.html » ('j') | tools/testing/perf_testing/run_perf_tests.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698