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

Side by Side Diff: sdk/lib/_internal/pub_generated/test/global/run/recompiles_if_sdk_is_out_of_date_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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'package:scheduled_test/scheduled_stream.dart'; 5 import 'package:scheduled_test/scheduled_stream.dart';
6 import 'package:scheduled_test/scheduled_test.dart'; 6 import 'package:scheduled_test/scheduled_test.dart';
7 7
8 import '../../descriptor.dart' as d; 8 import '../../descriptor.dart' as d;
9 import '../../test_pub.dart'; 9 import '../../test_pub.dart';
10 10
11 main() { 11 main() {
12 initConfig(); 12 initConfig();
13 integration('recompiles a script if the SDK version is out-of-date', () { 13 integration('recompiles a script if the SDK version is out-of-date', () {
14 servePackages((builder) { 14 servePackages((builder) {
15 builder.serve("foo", "1.0.0", contents: [ 15 builder.serve(
16 d.dir("bin", [ 16 "foo",
17 d.file("script.dart", "main(args) => print('ok');") 17 "1.0.0",
18 ]) 18 contents: [
19 ]); 19 d.dir("bin", [d.file("script.dart", "main(args) => print('ok');")] )]);
20 }); 20 });
21 21
22 schedulePub(args: ["global", "activate", "foo"]); 22 schedulePub(args: ["global", "activate", "foo"]);
23 23
24 d.dir(cachePath, [ 24 d.dir(
25 d.dir('global_packages', [ 25 cachePath,
26 d.dir('foo', [ 26 [
27 d.dir('bin', [d.outOfDateSnapshot('script.dart.snapshot')]) 27 d.dir(
28 ]) 28 'global_packages',
29 ]) 29 [
30 ]).create(); 30 d.dir(
31 'foo',
32 [d.dir('bin', [d.outOfDateSnapshot('script.dart.snapshot ')])])])]).create();
31 33
32 var pub = pubRun(global: true, args: ["foo:script"]); 34 var pub = pubRun(global: true, args: ["foo:script"]);
33 // In the real world this would just print "hello!", but since we collect 35 // In the real world this would just print "hello!", but since we collect
34 // all output we see the precompilation messages as well. 36 // all output we see the precompilation messages as well.
35 pub.stdout.expect("Precompiling executables..."); 37 pub.stdout.expect("Precompiling executables...");
36 pub.stdout.expect(consumeThrough("ok")); 38 pub.stdout.expect(consumeThrough("ok"));
37 pub.shouldExit(); 39 pub.shouldExit();
38 40
39 d.dir(cachePath, [ 41 d.dir(
40 d.dir('global_packages', [ 42 cachePath,
41 d.dir('foo', [ 43 [
42 d.dir('bin', [ 44 d.dir(
43 d.matcherFile('script.dart.snapshot', contains('ok')) 45 'global_packages',
44 ]) 46 [
45 ]) 47 d.dir(
46 ]) 48 'foo',
47 ]).validate(); 49 [
50 d.dir(
51 'bin',
52 [d.matcherFile('script.dart.snapshot', contains( 'ok'))])])])]).validate();
48 }); 53 });
49 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698