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

Unified Diff: tools/test.py

Issue 8469016: Adding in-browser correctness testing via selenium. (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 1427)
+++ tools/test.py (working copy)
@@ -1219,7 +1219,8 @@
result.add_option(
'-c', '--component',
help='The component to test against '
- '(most, vm, dartc, frog, frogsh, leg, chromium, dartium)',
+ '(most, vm, dartc, frog, frogsh, leg, chromium, dartium, '
+ 'webdriver)',
metavar='[most,vm,dartc,chromium,dartium]',
default='vm')
return result
@@ -1259,7 +1260,7 @@
return False
for component in options.component:
if not component in ['vm', 'dartc', 'frog', 'frogsh', 'leg',
- 'chromium', 'dartium']:
+ 'chromium', 'dartium', 'webdriver']:
print 'Unknown component %s' % component
return False
options.flags = []

Powered by Google App Engine
This is Rietveld 408576698