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

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

Issue 2371113004: Use .packages instead of pubspec.yaml (Closed)
Patch Set: Mark clang as passing Created 4 years, 3 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/multitest.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 c6695bf5563728a1aa6d70b97719bd664c5687ce..1f171f09e763811ec1a8c96ea653af5f595eebcf 100644
--- a/pkg/dev_compiler/test/codegen_test.dart
+++ b/pkg/dev_compiler/test/codegen_test.dart
@@ -83,8 +83,12 @@ main(List<String> arguments) {
var testDirs = [
'language',
'corelib',
+ path.join('corelib', 'regexp'),
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'),
@@ -218,7 +222,7 @@ List<String> _setUpTests(List<String> testDirs) {
for (var testDir in testDirs) {
for (var file
- in _listFiles(path.join(codegenDir, testDir), recursive: true)) {
+ in _listFiles(path.join(codegenDir, testDir), recursive: false)) {
var relativePath = path.relative(file, from: codegenDir);
var outputPath = path.join(codegenTestDir, relativePath);
« no previous file with comments | « pkg/dev_compiler/test/browser/language_tests.js ('k') | pkg/dev_compiler/test/multitest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698