| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 scheduled_process_test; | 5 library scheduled_process_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:convert'; | 8 import 'dart:convert'; |
| 9 import 'dart:io'; | 9 import 'dart:io'; |
| 10 import 'dart:platform' as platform; | |
| 11 | 10 |
| 12 import 'package:path/path.dart' as path; | 11 import 'package:path/path.dart' as path; |
| 13 import 'package:scheduled_test/scheduled_process.dart'; | 12 import 'package:scheduled_test/scheduled_process.dart'; |
| 14 import 'package:scheduled_test/scheduled_test.dart'; | 13 import 'package:scheduled_test/scheduled_test.dart'; |
| 15 | 14 |
| 16 import 'metatest.dart'; | 15 import 'metatest.dart'; |
| 17 import 'utils.dart'; | 16 import 'utils.dart'; |
| 18 | 17 |
| 19 void main(_, message) { | 18 void main(_, message) { |
| 20 initMetatest(message); | 19 initMetatest(message); |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 }); | 382 }); |
| 384 }, 'write script file'); | 383 }, 'write script file'); |
| 385 | 384 |
| 386 currentSchedule.onComplete.schedule(() { | 385 currentSchedule.onComplete.schedule(() { |
| 387 return tempDir.catchError((_) => null).then((dir) { | 386 return tempDir.catchError((_) => null).then((dir) { |
| 388 if (dir == null) return; | 387 if (dir == null) return; |
| 389 return new Directory(dir).delete(recursive: true); | 388 return new Directory(dir).delete(recursive: true); |
| 390 }); | 389 }); |
| 391 }, 'clean up temp dir'); | 390 }, 'clean up temp dir'); |
| 392 | 391 |
| 393 return new ScheduledProcess.start(platform.executable, | 392 return new ScheduledProcess.start(Platform.executable, |
| 394 ['--checked', dartPath]); | 393 ['--checked', dartPath]); |
| 395 } | 394 } |
| OLD | NEW |