Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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("test_options_parser"); | 5 #library("test_options_parser"); |
| 6 | 6 |
| 7 #import("dart:io"); | 7 #import("dart:io"); |
| 8 | 8 |
| 9 List<String> defaultTestSelectors = | 9 List<String> defaultTestSelectors = |
| 10 const ['dartc', 'samples', 'standalone', 'corelib', 'co19', 'language', | 10 const ['dartc', 'samples', 'standalone', 'corelib', 'co19', 'language', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 65 Controls how dart code is compiled and executed. | 65 Controls how dart code is compiled and executed. |
| 66 | 66 |
| 67 vm: Run dart code on the standalone dart vm. | 67 vm: Run dart code on the standalone dart vm. |
| 68 | 68 |
| 69 frog: Compile dart code by running frog on the standalone dart vm, and | 69 frog: Compile dart code by running frog on the standalone dart vm, and |
| 70 run the resulting javascript on D8. | 70 run the resulting javascript on D8. |
| 71 | 71 |
| 72 leg: Compile dart code by running leg on the standalone dart vm, and | 72 leg: Compile dart code by running leg on the standalone dart vm, and |
| 73 run the resulting javascript on D8. | 73 run the resulting javascript on D8. |
| 74 | 74 |
| 75 frogsh: Compile dart code by running frog on node.js, and run the | 75 frogsh: Compile dart code by running frog as javascript in DumpRenderTree, |
|
ngeoffray
2012/03/06 07:14:20
frog as javascript -> frog compiled to javascript?
mattsh
2012/03/06 16:17:33
Done.
| |
| 76 resulting javascript on the same instance of node.js. | 76 and run the resulting javascript in DumpRenderTree. |
| 77 | 77 |
| 78 dartium: Run dart code in a type="application/dart" script tag in a | 78 dartium: Run dart code in a type="application/dart" script tag in a |
| 79 dartium build of DumpRenderTree. | 79 dartium build of DumpRenderTree. |
| 80 | 80 |
| 81 chromium: Obsolete, not used, will be removed. | 81 chromium: Obsolete, not used, will be removed. |
| 82 | 82 |
| 83 frogium: Compile dart code by running frog on the standalone dart vm, | 83 frogium: Compile dart code by running frog on the standalone dart vm, |
| 84 and run the resulting javascript in a javascript script tag in | 84 and run the resulting javascript in a javascript script tag in |
| 85 a dartium build of DumpRenderTree. | 85 a dartium build of DumpRenderTree. |
| 86 | 86 |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 536 return option; | 536 return option; |
| 537 } | 537 } |
| 538 } | 538 } |
| 539 print('Unknown test option $name'); | 539 print('Unknown test option $name'); |
| 540 exit(1); | 540 exit(1); |
| 541 } | 541 } |
| 542 | 542 |
| 543 | 543 |
| 544 List<_TestOptionSpecification> _options; | 544 List<_TestOptionSpecification> _options; |
| 545 } | 545 } |
| OLD | NEW |