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 12 matching lines...) Expand all Loading... |
23 # test on Dartium, which requires all tests to have a library. | 23 # test on Dartium, which requires all tests to have a library. |
24 build/test/async_exception_test: RuntimeError # 13921 | 24 build/test/async_exception_test: RuntimeError # 13921 |
25 build/test/async_exception_with_future_test: RuntimeError # 13921 | 25 build/test/async_exception_with_future_test: RuntimeError # 13921 |
26 build/test/async_setup_teardown_test: RuntimeError # 13921 | 26 build/test/async_setup_teardown_test: RuntimeError # 13921 |
27 build/test/completion_test: RuntimeError # 13921 | 27 build/test/completion_test: RuntimeError # 13921 |
28 build/test/correct_callback_test: RuntimeError # 13921 | 28 build/test/correct_callback_test: RuntimeError # 13921 |
29 build/test/exception_test: RuntimeError # 13921 | 29 build/test/exception_test: RuntimeError # 13921 |
30 build/test/excess_callback_test: RuntimeError # 13921 | 30 build/test/excess_callback_test: RuntimeError # 13921 |
31 build/test/expect_async_args_test: RuntimeError # 13921 | 31 build/test/expect_async_args_test: RuntimeError # 13921 |
32 build/test/expect_async_test: RuntimeError # 13921 | 32 build/test/expect_async_test: RuntimeError # 13921 |
| 33 build/test/future_matchers_test: RuntimeError # 13921 |
33 build/test/group_name_test: RuntimeError # 13921 | 34 build/test/group_name_test: RuntimeError # 13921 |
34 build/test/invalid_ops_test: RuntimeError # 13921 | 35 build/test/invalid_ops_test: RuntimeError # 13921 |
35 build/test/late_exception_test: RuntimeError # 13921 | 36 build/test/late_exception_test: RuntimeError # 13921 |
36 build/test/middle_exception_test: RuntimeError # 13921 | 37 build/test/middle_exception_test: RuntimeError # 13921 |
37 build/test/nested_groups_setup_teardown_test: RuntimeError # 13921 | 38 build/test/nested_groups_setup_teardown_test: RuntimeError # 13921 |
| 39 build/test/prints_matcher_test: RuntimeError # 13921 |
38 build/test/protect_async_test: RuntimeError # 13921 | 40 build/test/protect_async_test: RuntimeError # 13921 |
39 build/test/returning_future_test: RuntimeError # 13921 | 41 build/test/returning_future_test: RuntimeError # 13921 |
40 build/test/returning_future_using_runasync_test: RuntimeError # 13921 | 42 build/test/returning_future_using_runasync_test: RuntimeError # 13921 |
41 build/test/runtests_without_tests_test: RuntimeError # 13921 | 43 build/test/runtests_without_tests_test: RuntimeError # 13921 |
42 build/test/setup_and_teardown_test: RuntimeError # 13921 | 44 build/test/setup_and_teardown_test: RuntimeError # 13921 |
43 build/test/setup_test: RuntimeError # 13921 | 45 build/test/setup_test: RuntimeError # 13921 |
44 build/test/single_correct_test: RuntimeError # 13921 | 46 build/test/single_correct_test: RuntimeError # 13921 |
45 build/test/single_failing_test: RuntimeError # 13921 | 47 build/test/single_failing_test: RuntimeError # 13921 |
46 build/test/skipped_soloed_nested_test: RuntimeError # 13921 | 48 build/test/skipped_soloed_nested_test: RuntimeError # 13921 |
47 build/test/teardown_test: RuntimeError # 13921 | 49 build/test/teardown_test: RuntimeError # 13921 |
48 build/test/testcases_immutable_test: RuntimeError # 13921 | 50 build/test/testcases_immutable_test: RuntimeError # 13921 |
49 | 51 |
50 [ $compiler == none && $browser ] | 52 [ $compiler == none && $browser ] |
51 build/test/missing_tick_test: RuntimeError # Expected to fail, due to timeout. | 53 build/test/missing_tick_test: RuntimeError # Expected to fail, due to timeout. |
52 | 54 |
53 [ $compiler == dart2js && $minified ] | 55 [ $compiler == dart2js && $minified ] |
54 # The unminified matcher tests test that the real names of Dart types are | 56 # 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 | 57 # printed. Minified versions of these tests exist that test the behavior when |
56 # minified. | 58 # minified. |
57 build/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS | 59 build/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS |
58 | 60 |
59 [ $minified == false ] | 61 [ $minified == false ] |
60 # The minified matcher tests test that the minified names of Dart types are | 62 # 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 | 63 # printed. Unminified versions of these tests exist that test the behavior when |
62 # not minified. | 64 # not minified. |
63 build/test/*_minified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS | 65 build/test/*_minified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART2JS |
OLD | NEW |