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

Unified Diff: pkg/dev_compiler/test/codegen_test.dart

Issue 2641543003: Use "Object" as the reified type of covariant override parameters. (Closed)
Patch Set: Format. Created 3 years, 11 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 | « pkg/dev_compiler/test/browser/language_tests.js ('k') | pkg/dev_compiler/test/not_yet_strong_tests.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dev_compiler/test/codegen_test.dart
diff --git a/pkg/dev_compiler/test/codegen_test.dart b/pkg/dev_compiler/test/codegen_test.dart
index 7ac885d05a2115081698bc760dc1cb797cdfdedf..5e5e98b5dbe4b696196baf6f01e69121690d79fb 100644
--- a/pkg/dev_compiler/test/codegen_test.dart
+++ b/pkg/dev_compiler/test/codegen_test.dart
@@ -89,9 +89,6 @@ main(List<String> arguments) {
path.join('lib', 'collection'),
path.join('lib', 'convert'),
path.join('lib', 'html'),
- // TODO(vsm): Fix these - they import files from a different directory
- // - this triggers an invalid library root build error.
- // path.join('lib', 'html', 'custom'),
path.join('lib', 'math'),
path.join('lib', 'mirrors'),
path.join('lib', 'typed_data'),
@@ -263,7 +260,7 @@ List<String> _setUpTests(List<String> testDirs) {
path.join(dirParts[0] + "_strong", path.joinAll(dirParts.skip(1)));
var inputPath = path.join(testDirectory, '../../../tests/', sdkTestDir);
- for (var file in _listFiles(inputPath, recursive: false)) {
+ for (var file in _listFiles(inputPath, recursive: true)) {
var relativePath = path.relative(file, from: inputPath);
var outputPath = path.join(codegenTestDir, testDir, relativePath);
@@ -391,5 +388,13 @@ final _crashingTests = new Set<String>.from([
'language/mixin_illegal_syntax_test_11_multi',
'language/mixin_illegal_syntax_test_12_multi',
'language/mixin_illegal_syntax_test_13_multi',
- 'language/mixin_illegal_syntax_test_14_multi'
+ 'language/mixin_illegal_syntax_test_14_multi',
+
+ // TODO(vsm): Fix these - they import files from a different directory
+ // - this triggers an invalid library root build error.
+ 'lib/html/custom/attribute_changed_callback_test',
+ 'lib/html/custom/entered_left_view_test',
+ 'lib/html/custom/js_custom_test',
+ 'lib/html/custom/mirrors_test',
+ 'lib/html/custom/regress_194523002_test',
]);
« no previous file with comments | « pkg/dev_compiler/test/browser/language_tests.js ('k') | pkg/dev_compiler/test/not_yet_strong_tests.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698