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 | 7 */packages/*: Skip |
8 */*/packages/*: Skip | 8 */*/packages/*: Skip |
9 */*/*/packages/*: Skip | 9 */*/*/packages/*: Skip |
10 */*/*/*packages/*: Skip | 10 */*/*/*packages/*: Skip |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 build/test/setup_and_teardown_test: RuntimeError # 13921 | 42 build/test/setup_and_teardown_test: RuntimeError # 13921 |
43 build/test/setup_test: RuntimeError # 13921 | 43 build/test/setup_test: RuntimeError # 13921 |
44 build/test/single_correct_test: RuntimeError # 13921 | 44 build/test/single_correct_test: RuntimeError # 13921 |
45 build/test/single_failing_test: RuntimeError # 13921 | 45 build/test/single_failing_test: RuntimeError # 13921 |
46 build/test/skipped_soloed_nested_test: RuntimeError # 13921 | 46 build/test/skipped_soloed_nested_test: RuntimeError # 13921 |
47 build/test/teardown_test: RuntimeError # 13921 | 47 build/test/teardown_test: RuntimeError # 13921 |
48 build/test/testcases_immutable_test: RuntimeError # 13921 | 48 build/test/testcases_immutable_test: RuntimeError # 13921 |
49 | 49 |
50 [ $compiler == none && $browser ] | 50 [ $compiler == none && $browser ] |
51 build/test/missing_tick_test: RuntimeError # Expected to fail, due to timeout. | 51 build/test/missing_tick_test: RuntimeError # Expected to fail, due to timeout. |
| 52 |
| 53 [ $compiler == dart2js && $minified ] |
| 54 # The unminified matcher tests test that the real names of Dart types are |
| 55 # printed. Minified versions of these tests exist that test the behavior when |
| 56 # minified. |
| 57 build/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS |
| 58 |
| 59 [ $minified == false ] |
| 60 # The minified matcher tests test that the minified names of Dart types are |
| 61 # printed. Unminified versions of these tests exist that test the behavior when |
| 62 # not minified. |
| 63 build/test/*_minified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS |
OLD | NEW |