Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/usr/bin/env dart | 1 #!/bin/bash -c exec$IFS"${0%/*}"/testing/bin/$OSTYPE/dart$IFS"$0"$IFS"$@" |
|
ricow1
2012/10/05 10:48:58
This is pretty magical if people did not actually
| |
| 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3 // for details. All rights reserved. Use of this source code is governed by a | 3 // for details. All rights reserved. Use of this source code is governed by a |
| 4 // BSD-style license that can be found in the LICENSE file. | 4 // BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 /** | 6 /** |
| 7 * This file is the entrypoint of the dart test suite. This suite is used | 7 * This file is the entrypoint of the dart test suite. This suite is used |
| 8 * to test: | 8 * to test: |
| 9 * | 9 * |
| 10 * 1. the dart vm | 10 * 1. the dart vm |
| 11 * 2. the dart2js compiler | 11 * 2. the dart2js compiler |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 149 new ProcessQueue(maxProcesses, | 149 new ProcessQueue(maxProcesses, |
| 150 progressIndicator, | 150 progressIndicator, |
| 151 startTime, | 151 startTime, |
| 152 printTiming, | 152 printTiming, |
| 153 enqueueConfiguration, | 153 enqueueConfiguration, |
| 154 () => null, | 154 () => null, |
| 155 verbose, | 155 verbose, |
| 156 listTests); | 156 listTests); |
| 157 } | 157 } |
| 158 } | 158 } |
| OLD | NEW |