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

Unified Diff: presubmit.py

Issue 8437081: Frog changes (in experimental) to get frog integrated into the test infrastructure. (Closed) Base URL: http://dart.googlecode.com/svn/experimental/frog/
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
Index: presubmit.py
===================================================================
--- presubmit.py (revision 1140)
+++ presubmit.py (working copy)
@@ -61,13 +61,14 @@
print 'Bootstrapping took \033[1m%s\033[0m seconds' % elapsed
print 'Generated frogsh is \033[1m%d\033[0m kB' % size
- RunCommand('../tools/build.py', '--mode=release,debug')
- test_cmd = ['../tools/test.py', '--report', '--timeout=5', '--progress=color',
- '--mode=release,debug']
+ RunCommand('../tools/build.py', '--mode=release')
+ test_cmd = ['../tools/test.py', '--component=frog,frogsh',
+ '--report', '--timeout=5', '--progress=color',
+ '--mode=release']
if args[1:]:
test_cmd.extend(args[1:])
else:
- test_cmd.append('frog')
+ test_cmd.extend(['language', 'corelib'])
RunCommand(*test_cmd, verbose=True)
leg_test_dir = os.path.join('leg', 'tests')
for current_dir, directories, filenames in os.walk(leg_test_dir):

Powered by Google App Engine
This is Rietveld 408576698