OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 @TestOn("vm") | 5 @TestOn("vm") |
6 | 6 |
7 import 'dart:io'; | 7 import 'dart:io'; |
8 import 'dart:math' as math; | 8 import 'dart:math' as math; |
9 | 9 |
10 import 'package:path/path.dart' as p; | 10 import 'package:path/path.dart' as p; |
(...skipping 29 matching lines...) Expand all Loading... |
40 | 40 |
41 final _usage = """ | 41 final _usage = """ |
42 Usage: pub run test:test [files or directories...] | 42 Usage: pub run test:test [files or directories...] |
43 | 43 |
44 -h, --help Shows this usage information. | 44 -h, --help Shows this usage information. |
45 -n, --name A substring of the name of the test to run. | 45 -n, --name A substring of the name of the test to run. |
46 Regular expression syntax is supported. | 46 Regular expression syntax is supported. |
47 | 47 |
48 -N, --plain-name A plain-text substring of the name of the test to
run. | 48 -N, --plain-name A plain-text substring of the name of the test to
run. |
49 -p, --platform The platform(s) on which to run the tests. | 49 -p, --platform The platform(s) on which to run the tests. |
50 [vm (default), chrome] | 50 [vm (default), chrome, firefox] |
51 | 51 |
52 -j, --concurrency=<threads> The number of concurrent test suites run. | 52 -j, --concurrency=<threads> The number of concurrent test suites run. |
53 (defaults to $_defaultConcurrency) | 53 (defaults to $_defaultConcurrency) |
54 | 54 |
55 --pub-serve=<port> The port of a pub serve instance serving "test/". | 55 --pub-serve=<port> The port of a pub serve instance serving "test/". |
56 --[no-]color Whether to use terminal colors. | 56 --[no-]color Whether to use terminal colors. |
57 (auto-detected by default) | 57 (auto-detected by default) |
58 """; | 58 """; |
59 | 59 |
60 void main() { | 60 void main() { |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 }); | 378 }); |
379 }); | 379 }); |
380 }); | 380 }); |
381 } | 381 } |
382 | 382 |
383 ProcessResult _runUnittest(List<String> args) => | 383 ProcessResult _runUnittest(List<String> args) => |
384 runUnittest(args, workingDirectory: _sandbox); | 384 runUnittest(args, workingDirectory: _sandbox); |
385 | 385 |
386 ProcessResult _runDart(List<String> args) => | 386 ProcessResult _runDart(List<String> args) => |
387 runDart(args, workingDirectory: _sandbox); | 387 runDart(args, workingDirectory: _sandbox); |
OLD | NEW |