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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 9535012: Introduce the legium component in test.dart, and start support for dart:dom and dart:html. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 10 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
« frog/leg/scanner/scanner_task.dart ('K') | « tools/testing/dart/test_options.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
===================================================================
--- tools/testing/dart/test_suite.dart (revision 4753)
+++ tools/testing/dart/test_suite.dart (working copy)
@@ -331,6 +331,7 @@
case 'dartium':
case 'chromium':
case 'frogium':
+ case 'legium':
case 'webdriver':
enqueueBrowserTest(filename, testName, optionsFromFile,
expectations, isNegative);
@@ -591,6 +592,7 @@
// TODO(whesse): Add --fatal-type-errors if needed.
break;
case 'frogium':
+ case 'legium':
case 'webdriver':
String libdir = configuration['froglib'];
if (libdir == '') {
@@ -687,6 +689,7 @@
return 'application/dart';
case 'chromium':
case 'frogium':
+ case 'legium':
case 'webdriver':
return 'text/javascript';
default:
@@ -1027,7 +1030,9 @@
class TestUtils {
static String executableSuffix(String component) {
if (new Platform().operatingSystem() == 'windows') {
- if (component != 'frogium' && component != 'webdriver') {
+ if (component != 'frogium'
+ && component != 'legium'
+ && component != 'webdriver') {
return '.exe';
} else {
return '.bat';
@@ -1060,6 +1065,7 @@
case 'dartc':
return 'compiler/bin/dartc$suffix';
case 'frogium':
+ case 'legium':
case 'webdriver':
return 'frog/bin/frog$suffix';
default:
@@ -1119,7 +1125,8 @@
args.add('--enable_asserts');
args.add("--enable_type_checks");
}
- if (configuration["component"] == "leg") {
+ if (configuration["component"] == "leg"
+ || configuration["component"] == "legium") {
args.add("--verbose");
args.add("--leg");
}
« frog/leg/scanner/scanner_task.dart ('K') | « tools/testing/dart/test_options.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698