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

Unified Diff: sdk/lib/_internal/pub_generated/test/async_compile_test.dart

Issue 887223007: Revert "Use native async/await support in pub." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
Index: sdk/lib/_internal/pub_generated/test/async_compile_test.dart
diff --git a/sdk/lib/_internal/pub_generated/test/async_compile_test.dart b/sdk/lib/_internal/pub_generated/test/async_compile_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..6c0af598344cd4ce96a8da02ec3553f592fbc03c
--- /dev/null
+++ b/sdk/lib/_internal/pub_generated/test/async_compile_test.dart
@@ -0,0 +1,30 @@
+// 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 'dart:io';
+
+import 'package:path/path.dart' as p;
+import 'package:scheduled_test/descriptor.dart' as d;
+import 'package:scheduled_test/scheduled_test.dart';
+import 'package:scheduled_test/scheduled_process.dart';
+
+import 'test_pub.dart';
+import '../lib/src/io.dart';
+
+void main() {
+ integration("the generated pub source is up to date", () {
+ var compilerArgs = Platform.executableArguments.toList()..addAll(
+ [
+ p.join(pubRoot, 'bin', 'async_compile.dart'),
+ '--force',
+ '--verbose',
+ p.join(sandboxDir, "pub_generated")]);
+
+ new ScheduledProcess.start(Platform.executable, compilerArgs).shouldExit(0);
+
+ new d.DirectoryDescriptor.fromFilesystem(
+ "pub_generated",
+ p.join(pubRoot, "..", "pub_generated")).validate();
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698