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

Unified Diff: tools/test.py

Issue 8566021: Made changes to the test architecture so that we can run frameworks other than (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
Index: tools/test.py
===================================================================
--- tools/test.py (revision 1463)
+++ tools/test.py (working copy)
@@ -1220,7 +1220,7 @@
'-c', '--component',
help='The component to test against '
'(most, vm, dartc, frog, frogsh, leg, chromium, dartium, '
- 'webdriver)',
+ 'webdriver, webdriverff, webdriverie, webdriverchrome)',
Siggi Cherem (dart-lang) 2011/11/14 23:56:06 I'm not sure about adding so many components. Mayb
Emily Fortuna 2011/11/15 00:38:07 Sounds good. I like that better. On 2011/11/14 23
metavar='[most,vm,dartc,chromium,dartium]',
default='vm')
return result
@@ -1262,7 +1262,8 @@
return False
for component in options.component:
if not component in ['vm', 'dartc', 'frog', 'frogsh', 'leg',
- 'chromium', 'dartium', 'frogium', 'webdriver']:
+ 'chromium', 'dartium', 'frogium', 'webdriver',
+ 'webdriverff', 'webdriverie', 'webdriverchrome']:
print 'Unknown component %s' % component
return False
options.flags = []

Powered by Google App Engine
This is Rietveld 408576698