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

Side by Side Diff: tests/standalone/io/process_test_util.dart

Issue 11578007: Turn on dartc testing of tests/standalone. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 library process_test_util;
6
7 import "dart:io";
8
5 String getPlatformExecutableExtension() { 9 String getPlatformExecutableExtension() {
6 var os = Platform.operatingSystem; 10 var os = Platform.operatingSystem;
7 if (os == 'windows') return '.exe'; 11 if (os == 'windows') return '.exe';
8 return ''; // Linux and Mac OS. 12 return ''; // Linux and Mac OS.
9 } 13 }
10 14
11 String getProcessTestFileName() { 15 String getProcessTestFileName() {
12 var extension = getPlatformExecutableExtension(); 16 var extension = getPlatformExecutableExtension();
13 var executable = new Options().executable; 17 var executable = new Options().executable;
14 var dirIndex = executable.lastIndexOf('dart$extension'); 18 var dirIndex = executable.lastIndexOf('dart$extension');
15 var buffer = new StringBuffer(executable.substring(0, dirIndex)); 19 var buffer = new StringBuffer(executable.substring(0, dirIndex));
16 buffer.add('process_test$extension'); 20 buffer.add('process_test$extension');
17 return buffer.toString(); 21 return buffer.toString();
18 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698