| OLD | NEW |
| 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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 # Skip non-test files ending with "_test". | 5 # Skip non-test files ending with "_test". |
| 6 packages/*: Skip | 6 packages/*: Skip |
| 7 packages/*: Skip | |
| 8 */packages/*: Skip | 7 */packages/*: Skip |
| 9 */*/packages/*: Skip | 8 */*/packages/*: Skip |
| 10 */*/*/packages/*: Skip | 9 */*/*/packages/*: Skip |
| 11 */*/*/*packages/*: Skip | 10 */*/*/*packages/*: Skip |
| 12 */*/*/*/*packages/*: Skip | 11 */*/*/*/*packages/*: Skip |
| 13 */*/packages/*: Skip | |
| 14 */*/packages/*: Skip | |
| 15 */packages/*: Skip | |
| 16 */*/packages/*: Skip | |
| 17 */*/*/packages/*: Skip | |
| 18 */*/*/*packages/*: Skip | |
| 19 */*/*/*/*packages/*: Skip | |
| 20 */*/*/*packages/*: Skip | |
| 21 */*/*/*/*packages/*: Skip | |
| 22 | 12 |
| 23 # Only run tests from the build directory, since we don't care about the | 13 # Only run tests from the build directory, since we don't care about the |
| 24 # difference between transformed an untransformed code. | 14 # difference between transformed an untransformed code. |
| 25 test/*: Skip | 15 test/*: Skip |
| 26 | 16 |
| 27 [ $compiler == dart2js && $minified ] | 17 [ $compiler == dart2js && $minified ] |
| 28 # The unminified matcher tests test that the real names of Dart types are | 18 # The unminified matcher tests test that the real names of Dart types are |
| 29 # printed. Minified versions of these tests exist that test the behavior when | 19 # printed. Minified versions of these tests exist that test the behavior when |
| 30 # minified. | 20 # minified. |
| 31 *_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS | 21 *_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS |
| 32 | 22 |
| 33 [ $minified == false ] | 23 [ $minified == false ] |
| 34 # The minified matcher tests test that the minified names of Dart types are | 24 # The minified matcher tests test that the minified names of Dart types are |
| 35 # printed. Unminified versions of these tests exist that test the behavior when | 25 # printed. Unminified versions of these tests exist that test the behavior when |
| 36 # not minified. | 26 # not minified. |
| 37 matcher/test/*_minified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS | 27 *_minified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS |
| OLD | NEW |