OLD | NEW |
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; | 5 library process_test_util; |
6 | 6 |
7 import "dart:io"; | 7 import "dart:io"; |
8 | 8 |
9 String getPlatformExecutableExtension() { | 9 String getPlatformExecutableExtension() { |
10 var os = Platform.operatingSystem; | 10 var os = Platform.operatingSystem; |
11 if (os == 'windows') return '.exe'; | 11 if (os == 'windows') return '.exe'; |
12 return ''; // Linux and Mac OS. | 12 return ''; // Linux and Mac OS. |
13 } | 13 } |
14 | 14 |
15 String getProcessTestFileName() { | 15 String getProcessTestFileName() { |
16 var extension = getPlatformExecutableExtension(); | 16 var extension = getPlatformExecutableExtension(); |
17 var executable = new Options().executable; | 17 var executable = new Options().executable; |
18 var dirIndex = executable.lastIndexOf('dart$extension'); | 18 var dirIndex = executable.lastIndexOf('dart$extension'); |
19 var buffer = new StringBuffer(executable.substring(0, dirIndex)); | 19 var buffer = new StringBuffer(executable.substring(0, dirIndex)); |
20 buffer.add('process_test$extension'); | 20 buffer.write('process_test$extension'); |
21 return buffer.toString(); | 21 return buffer.toString(); |
22 } | 22 } |
OLD | NEW |