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

Unified Diff: tests/compiler/dart2js/exit_code_test.dart

Issue 326913002: Make dart2js unittests async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 | « tests/compiler/dart2js/declare_once_test.dart ('k') | tests/compiler/dart2js/find_my_name_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/exit_code_test.dart
diff --git a/tests/compiler/dart2js/exit_code_test.dart b/tests/compiler/dart2js/exit_code_test.dart
index 074e33d2dd6f07a76ec8ee49462f80a3899111c9..49f72f051204298c5fb9737f0fd71a4268fa87cd 100644
--- a/tests/compiler/dart2js/exit_code_test.dart
+++ b/tests/compiler/dart2js/exit_code_test.dart
@@ -48,10 +48,10 @@ class TestCompiler extends apiimpl.Compiler {
return super.run(uri);
}
- Future scanBuiltinLibraries() {
+ /*Future scanBuiltinLibraries() {
karlklose 2014/06/10 12:32:54 Remove the code?
test('Compiler.scanBuiltinLibraries');
return super.scanBuiltinLibraries();
- }
+ }*/
void initializeSpecialClasses() {
test('Compiler.initializeSpecialClasses');
@@ -248,7 +248,7 @@ void main() {
final tests = {
'Compiler': beforeRun,
'Compiler.run': beforeRun,
- 'Compiler.scanBuiltinLibraries': beforeRun,
+ //'Compiler.scanBuiltinLibraries': beforeRun,
'Compiler.initializeSpecialClasses': beforeRun,
'ScannerTask.scanElements': duringRun,
'Compiler.withCurrentElement': duringRun,
« no previous file with comments | « tests/compiler/dart2js/declare_once_test.dart ('k') | tests/compiler/dart2js/find_my_name_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698