Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 # Don't run any test-like files that show up in packages directories. It | 5 # Don't run any test-like files that show up in packages directories. It |
| 6 # shouldn't be necessary to run "pub install" in these packages, but if you do | 6 # shouldn't be necessary to run "pub install" in these packages, but if you do |
| 7 # it shouldn't break the tests. | 7 # it shouldn't break the tests. |
| 8 */packages/*/*: Skip | 8 */packages/*/*: Skip |
| 9 */*/packages/*/*: Skip | 9 */*/packages/*/*: Skip |
| 10 */*/*/packages/*/*: Skip | 10 */*/*/packages/*/*: Skip |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 61 | 61 |
| 62 [ $runtime == vm && $system == windows ] | 62 [ $runtime == vm && $system == windows ] |
| 63 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 63 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
| 64 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 | 64 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 |
| 65 | 65 |
| 66 [ $compiler == dart2js ] | 66 [ $compiler == dart2js ] |
| 67 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 | 67 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 |
| 68 unittest/test/instance_test: Fail # http://dartbug.com/11191 | 68 unittest/test/instance_test: Fail # http://dartbug.com/11191 |
| 69 stack_trace/test/trace_test: Pass, Timeout # Issue 11645 | 69 stack_trace/test/trace_test: Pass, Timeout # Issue 11645 |
| 70 | 70 |
| 71 [ $compiler == dart2js && $checked ] | |
| 72 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. | |
|
Jennifer Messerly
2013/07/23 03:51:04
this pkg+test no longer exists
| |
| 73 | |
| 74 [ $compiler == dartanalyzer || $compiler == dart2analyzer] | 71 [ $compiler == dartanalyzer || $compiler == dart2analyzer] |
| 75 # These tests are runtime negative but statically positive, so we skip | 72 # These tests are runtime negative but statically positive, so we skip |
| 76 # them in the analyzer. | 73 # them in the analyzer. |
| 77 unittest/test/mock_regexp_negative_test: Skip | 74 unittest/test/mock_regexp_negative_test: Skip |
| 78 unittest/test/mock_stepwise_negative_test: Skip | 75 unittest/test/mock_stepwise_negative_test: Skip |
| 79 | 76 |
| 80 [ $compiler == dart2js && $csp ] | 77 [ $compiler == dart2js && $csp ] |
| 81 unittest/test/unittest_test: Pass, Crash # Issue 10935 | 78 unittest/test/unittest_test: Pass, Crash # Issue 10935 |
| 79 observe/test/observe_test: Fail # Issue 11970 | |
| 80 observe/test/path_observer_test: Fail # Issue 11970 | |
| 81 mdv/test/binding_syntax_test: Fail # Issue 11970 | |
| 82 | 82 |
| 83 serialization/test/serialization_test: Fail # Issue 6490 | 83 serialization/test/serialization_test: Fail # Issue 6490 |
| 84 serialization/test/no_library_test: Fail # Issue 6490 | 84 serialization/test/no_library_test: Fail # Issue 6490 |
| 85 | 85 |
| 86 [ $compiler == dart2js && $minified ] | 86 [ $compiler == dart2js && $minified ] |
| 87 # The unminified unittest tests test that the real names of Dart types are | 87 # The unminified unittest tests test that the real names of Dart types are |
| 88 # printed. Minified versions of these tests exist that test the behavior when | 88 # printed. Minified versions of these tests exist that test the behavior when |
| 89 # minified. | 89 # minified. |
| 90 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART 2JS | 90 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART 2JS |
| 91 | 91 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 174 [ $runtime == dartium || $runtime == drt ] | 174 [ $runtime == dartium || $runtime == drt ] |
| 175 serialization/test/no_library_test: Skip # Expected Failure | 175 serialization/test/no_library_test: Skip # Expected Failure |
| 176 | 176 |
| 177 # Skip mdv tests on command line VM, they only run in the browser. | 177 # Skip mdv tests on command line VM, they only run in the browser. |
| 178 [ $runtime == vm ] | 178 [ $runtime == vm ] |
| 179 mdv: Skip | 179 mdv: Skip |
| 180 | 180 |
| 181 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff || $runtime == dartium || $runtime == drt ] | 181 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff || $runtime == dartium || $runtime == drt ] |
| 182 docgen/test/single_library_test: Skip # Uses dart:io | 182 docgen/test/single_library_test: Skip # Uses dart:io |
| 183 | 183 |
| OLD | NEW |