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

Unified Diff: sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart

Issue 657673002: Regenerate pub sources. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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
Index: sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart
diff --git a/sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart b/sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart
index 13a050bc3392df1e58e62001c13b2869b8f6ca5c..970d0aa403d5e72f4de628cf74d07f97880ad376 100644
--- a/sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart
+++ b/sdk/lib/_internal/pub_generated/test/dart2js/outputs_deferred_libraries_test.dart
@@ -1,6 +1,12 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
import 'package:scheduled_test/scheduled_test.dart';
+
import '../descriptor.dart' as d;
import '../test_pub.dart';
+
const MAIN = """
import 'dart:async';
@@ -14,20 +20,26 @@ void main() {
});
}
""";
+
const A = """
library a;
fn() => print("a");
""";
+
const B = """
library b;
fn() => print("b");
""";
+
main() {
initConfig();
integration("compiles deferred libraries to separate outputs", () {
+ // Dart2js can take a long time to compile dart code, so we increase the
+ // timeout to cope with that.
currentSchedule.timeout *= 3;
+
d.dir(
appPath,
[
@@ -38,9 +50,11 @@ main() {
d.file('main.dart', MAIN),
d.file('a.dart', A),
d.file('b.dart', B)])]).create();
+
schedulePub(
args: ["build"],
output: new RegExp(r'Built 4 files to "build".'));
+
d.dir(
appPath,
[
@@ -53,6 +67,6 @@ main() {
d.matcherFile('main.dart.js', isNot(isEmpty)),
d.matcherFile('main.dart.precompiled.js', isNot(isEmpty)),
d.matcherFile('main.dart.js_1.part.js', isNot(isEmpty)),
- d.matcherFile('main.dart.js_2.part.js', isNot(isEmpty))])])]).validate();
+ d.matcherFile('main.dart.js_2.part.js', isNot(isEmpty)),])])]).validate();
});
}

Powered by Google App Engine
This is Rietveld 408576698