| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 # printed. Minified versions of these tests exist that test the behavior when | 102 # printed. Minified versions of these tests exist that test the behavior when |
| 103 # minified. | 103 # minified. |
| 104 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS | 104 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS |
| 105 csslib: Pass, Crash # crashing randomly, see issue 12468 | 105 csslib: Pass, Crash # crashing randomly, see issue 12468 |
| 106 | 106 |
| 107 [ $compiler == dart2js && $browser ] | 107 [ $compiler == dart2js && $browser ] |
| 108 stack_trace/test/vm_test: Fail, OK # VM-specific traces | 108 stack_trace/test/vm_test: Fail, OK # VM-specific traces |
| 109 crypto/test/sha256_test: Slow, Pass | 109 crypto/test/sha256_test: Slow, Pass |
| 110 crypto/test/sha1_test: Slow, Pass | 110 crypto/test/sha1_test: Slow, Pass |
| 111 | 111 |
| 112 [ $compiler == dart2js ] | |
| 113 csslib/test/var_test: Fail # looking for VM-specific stack traces, issue 12469 | |
| 114 | |
| 115 [ $compiler == dart2js && $runtime == drt ] | 112 [ $compiler == dart2js && $runtime == drt ] |
| 116 csslib: Pass, Fail # issue 12466 | 113 csslib: Pass, Fail # issue 12466 |
| 117 | 114 |
| 118 [ $browser ] | 115 [ $browser ] |
| 119 analyzer_experimental/test/error_test: Fail, OK # Uses dart:io. | 116 analyzer_experimental/test/error_test: Fail, OK # Uses dart:io. |
| 120 analyzer_experimental/test/generated/element_test: Fail, OK # Uses dart:io. | 117 analyzer_experimental/test/generated/element_test: Fail, OK # Uses dart:io. |
| 121 analyzer_experimental/test/generated/resolver_test: Fail, OK # Uses dart:io. | 118 analyzer_experimental/test/generated/resolver_test: Fail, OK # Uses dart:io. |
| 122 analyzer_experimental/test/options_test: Fail, OK # Uses dart:io. | 119 analyzer_experimental/test/options_test: Fail, OK # Uses dart:io. |
| 123 analyzer_experimental/test/services/formatter_test: Fail, OK # Uses dart:io. | 120 analyzer_experimental/test/services/formatter_test: Fail, OK # Uses dart:io. |
| 124 analyzer_experimental/test/parse_compilation_unit_test: Fail, OK # Uses dart:io. | 121 analyzer_experimental/test/parse_compilation_unit_test: Fail, OK # Uses dart:io. |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 # Skip tests on the VM if the package depends on dart:html | 201 # Skip tests on the VM if the package depends on dart:html |
| 205 [ $runtime == vm ] | 202 [ $runtime == vm ] |
| 206 custom_element: Skip | 203 custom_element: Skip |
| 207 mdv: Skip | 204 mdv: Skip |
| 208 mutation_observer: Skip | 205 mutation_observer: Skip |
| 209 polymer_expressions/test/syntax_test: Skip | 206 polymer_expressions/test/syntax_test: Skip |
| 210 third_party/html5lib/test/browser/browser_test: Skip | 207 third_party/html5lib/test/browser/browser_test: Skip |
| 211 | 208 |
| 212 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 209 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 213 docgen/test/single_library_test: Skip # Uses dart:io | 210 docgen/test/single_library_test: Skip # Uses dart:io |
| OLD | NEW |