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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/global/binstubs/outdated_binstub_runs_pub_global_test.dart

Issue 896623005: Use native async/await support in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'dart:io';
6
7 import 'package:path/path.dart' as p;
8 import 'package:scheduled_test/scheduled_process.dart';
9 import 'package:scheduled_test/scheduled_stream.dart';
10 import 'package:scheduled_test/scheduled_test.dart';
11
12 import '../../descriptor.dart' as d;
13 import '../../test_pub.dart';
14 import 'utils.dart';
15
16 main() {
17 initConfig();
18 integration("an outdated binstub runs 'pub global run'", () {
19 servePackages((builder) {
20 builder.serve("foo", "1.0.0", pubspec: {
21 "executables": {
22 "foo-script": "script"
23 }
24 },
25 contents: [
26 d.dir("bin", [d.file("script.dart", "main(args) => print('ok');")] )]);
27 });
28
29 schedulePub(args: ["global", "activate", "foo"]);
30
31 d.dir(
32 cachePath,
33 [
34 d.dir(
35 'global_packages',
36 [
37 d.dir(
38 'foo',
39 [d.dir('bin', [d.outOfDateSnapshot('script.dart.snapshot ')])])])]).create();
40
41 var process = new ScheduledProcess.start(
42 p.join(sandboxDir, cachePath, "bin", binStubName("foo-script")),
43 ["arg1", "arg2"],
44 environment: getEnvironment());
45
46 process.stdout.expect(consumeThrough("ok"));
47 process.shouldExit();
48 });
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698