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

Side by Side Diff: tests/compiler/dart2js/source_map_pub_build_validity_test.dart

Issue 1292423006: Fix errors in dart2js/source_map_pub_build_validity_test (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'dart:io'; 5 import 'dart:io';
6 6
7 import 'package:path/path.dart' as path; 7 import 'package:path/path.dart' as path;
8 import 'package:async_helper/async_helper.dart'; 8 import 'package:async_helper/async_helper.dart';
9 import 'package:expect/expect.dart'; 9 import 'package:expect/expect.dart';
10 import 'source_map_validator_helper.dart'; 10 import 'source_map_validator_helper.dart';
11 11
12 void main() { 12 void main() {
13 asyncTest(() async { 13 asyncTest(() async {
14 Directory tmpDir = createTempDir(); 14 Directory tmpDir = await createTempDir();
15 try { 15 try {
16 Directory sunflowerDir = new Directory.fromUri( 16 Directory sunflowerDir = new Directory.fromUri(
17 Platform.script.resolve('../../../third_party/sunflower')); 17 Platform.script.resolve('../../../third_party/sunflower'));
18 18
19 print("Copying '${sunflowerDir.path}' to '${tmpDir.path}'."); 19 print("Copying '${sunflowerDir.path}' to '${tmpDir.path}'.");
20 copyDirectory(sunflowerDir, tmpDir); 20 copyDirectory(sunflowerDir, tmpDir);
21 String ext = Platform.isWindows ? '.bat' : ''; 21 String ext = Platform.isWindows ? '.bat' : '';
22 String command = path.normalize(path.join( 22 String command = path.normalize(path.join(
23 path.fromUri(Platform.script), 23 path.fromUri(Platform.script),
24 '../../../../sdk/bin/pub${ext}')); 24 '../../../../sdk/bin/pub${ext}'));
(...skipping 10 matching lines...) Expand all
35 ProcessResult buildResult = await Process.run( 35 ProcessResult buildResult = await Process.run(
36 command, ['build','--mode=debug'], workingDirectory: tmpDir.path); 36 command, ['build','--mode=debug'], workingDirectory: tmpDir.path);
37 print(buildResult.stdout); 37 print(buildResult.stdout);
38 print(buildResult.stderr); 38 print(buildResult.stderr);
39 Expect.equals(0, buildResult.exitCode, 'Unexpected exitCode from pub'); 39 Expect.equals(0, buildResult.exitCode, 'Unexpected exitCode from pub');
40 validateSourceMap(new Uri.file(file, windows: Platform.isWindows)); 40 validateSourceMap(new Uri.file(file, windows: Platform.isWindows));
41 print("Deleting '${tmpDir.path}'."); 41 print("Deleting '${tmpDir.path}'.");
42 } finally { 42 } finally {
43 tmpDir.deleteSync(recursive: true); 43 tmpDir.deleteSync(recursive: true);
44 } 44 }
45 })); 45 });
46 } 46 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698