| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 128 |
| 129 # Skip browser-specific tests on VM | 129 # Skip browser-specific tests on VM |
| 130 [ $runtime == vm ] | 130 [ $runtime == vm ] |
| 131 path/test/browser_test: Fail, OK # Uses dart:html | 131 path/test/browser_test: Fail, OK # Uses dart:html |
| 132 intl/test/find_default_locale_browser_test: Skip | 132 intl/test/find_default_locale_browser_test: Skip |
| 133 intl/test/date_time_format_http_request_test: Skip | 133 intl/test/date_time_format_http_request_test: Skip |
| 134 | 134 |
| 135 [ $runtime == vm && $system == windows ] | 135 [ $runtime == vm && $system == windows ] |
| 136 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 136 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
| 137 | 137 |
| 138 [ $compiler == dartanalyzer ] | 138 [ $compiler == dartanalyzer || $compiler == dart2analyzer ] |
| 139 # These tests are runtime negative but statically positive, so we skip | 139 # These tests are runtime negative but statically positive, so we skip |
| 140 # them in the analyzer. | 140 # them in the analyzer. |
| 141 mock/test/mock_regexp_negative_test: Skip | 141 mock/test/mock_regexp_negative_test: Skip |
| 142 mock/test/mock_stepwise_negative_test: Skip | |
| 143 polymer/example/canonicalization: Skip | |
| 144 polymer/example/canonicalization2: Skip | |
| 145 polymer/example/canonicalization3: Skip | |
| 146 | |
| 147 third_party/angular_tests/browser_test: StaticWarning # Issue 15890 | |
| 148 | |
| 149 [ $compiler == dart2analyzer ] | |
| 150 # These tests are runtime negative but statically positive, so we skip | |
| 151 # them in the analyzer. | |
| 152 mock/test/mock_regexp_negative_test: Skip | |
| 153 mock/test/mock_stepwise_negative_test: Skip | 142 mock/test/mock_stepwise_negative_test: Skip |
| 154 polymer/example/canonicalization: Skip | 143 polymer/example/canonicalization: Skip |
| 155 polymer/example/canonicalization2: Skip | 144 polymer/example/canonicalization2: Skip |
| 156 polymer/example/canonicalization3: Skip | 145 polymer/example/canonicalization3: Skip |
| 157 | 146 |
| 158 third_party/angular_tests/browser_test: StaticWarning # Issue 15890 | 147 third_party/angular_tests/browser_test: StaticWarning # Issue 15890 |
| 148 docgen/test/*: StaticWarning # Issue 17896 |
| 159 | 149 |
| 160 [ $compiler == dart2js && $runtime == none] | 150 [ $compiler == dart2js && $runtime == none] |
| 161 polymer/example/canonicalization: Skip | 151 polymer/example/canonicalization: Skip |
| 162 polymer/example/canonicalization2: Skip | 152 polymer/example/canonicalization2: Skip |
| 163 polymer/example/canonicalization3: Skip | 153 polymer/example/canonicalization3: Skip |
| 164 | 154 |
| 165 [ $compiler == dart2js && $csp ] | 155 [ $compiler == dart2js && $csp ] |
| 166 matcher/test/mirror_matchers_test: Skip # Issue 12151 | 156 matcher/test/mirror_matchers_test: Skip # Issue 12151 |
| 167 polymer/test/noscript_test: Fail # Issue 17326 | 157 polymer/test/noscript_test: Fail # Issue 17326 |
| 168 polymer/test/js_interop_test: Fail # Issue 17326 | 158 polymer/test/js_interop_test: Fail # Issue 17326 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 third_party/angular_tests/browser_test/core/scope: Skip # Requires checked mode. | 341 third_party/angular_tests/browser_test/core/scope: Skip # Requires checked mode. |
| 352 third_party/angular_tests/browser_test/core/zone: Skip # Requires checked mode. | 342 third_party/angular_tests/browser_test/core/zone: Skip # Requires checked mode. |
| 353 third_party/angular_tests/browser_test/directive/ng_repeat: Skip # Issue 17152 | 343 third_party/angular_tests/browser_test/directive/ng_repeat: Skip # Issue 17152 |
| 354 third_party/angular_tests/browser_test/change_detection/dirty_checking_change_de
tector: Skip # Issue 17152 | 344 third_party/angular_tests/browser_test/change_detection/dirty_checking_change_de
tector: Skip # Issue 17152 |
| 355 | 345 |
| 356 [ $use_repository_packages ] | 346 [ $use_repository_packages ] |
| 357 analyzer/test/*: PubGetError | 347 analyzer/test/*: PubGetError |
| 358 | 348 |
| 359 [ $runtime == ie9 ] | 349 [ $runtime == ie9 ] |
| 360 polymer: Pass, Fail, Timeout # Issue 16717 | 350 polymer: Pass, Fail, Timeout # Issue 16717 |
| OLD | NEW |