| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 [ $compiler == dart2js && $minified ] | 85 [ $compiler == dart2js && $minified ] |
| 86 # The unminified unittest tests test that the real names of Dart types are | 86 # The unminified unittest tests test that the real names of Dart types are |
| 87 # printed. Minified versions of these tests exist that test the behavior when | 87 # printed. Minified versions of these tests exist that test the behavior when |
| 88 # minified. | 88 # minified. |
| 89 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS | 89 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS |
| 90 | 90 |
| 91 [ $compiler == dart2js && $browser ] | 91 [ $compiler == dart2js && $browser ] |
| 92 stack_trace/test/vm_test: Fail, OK # VM-specific traces | 92 stack_trace/test/vm_test: Fail, OK # VM-specific traces |
| 93 crypto/test/sha256_test: Slow, Pass | 93 crypto/test/sha256_test: Slow, Pass |
| 94 crypto/test/sha1_test: Slow, Pass | 94 crypto/test/sha1_test: Slow, Pass |
| 95 csslib/test/var_test: Fail # looking for VM-specific stack traces |
| 96 |
| 97 [ $compiler == dart2js && $runtime == drt ] |
| 98 csslib/test/nested_test: Fail # crashing DRT |
| 95 | 99 |
| 96 [ $browser ] | 100 [ $browser ] |
| 97 analyzer_experimental/test/error_test: Fail, OK # Uses dart:io. | 101 analyzer_experimental/test/error_test: Fail, OK # Uses dart:io. |
| 98 analyzer_experimental/test/generated/element_test: Fail, OK # Uses dart:io. | 102 analyzer_experimental/test/generated/element_test: Fail, OK # Uses dart:io. |
| 99 analyzer_experimental/test/generated/resolver_test: Fail, OK # Uses dart:io. | 103 analyzer_experimental/test/generated/resolver_test: Fail, OK # Uses dart:io. |
| 100 analyzer_experimental/test/options_test: Fail, OK # Uses dart:io. | 104 analyzer_experimental/test/options_test: Fail, OK # Uses dart:io. |
| 101 analyzer_experimental/test/services/formatter_test: Fail, OK # Uses dart:io. | 105 analyzer_experimental/test/services/formatter_test: Fail, OK # Uses dart:io. |
| 102 barback/test/*: Fail, OK # Uses dart:io. | 106 barback/test/*: Fail, OK # Uses dart:io. |
| 103 http/test/client_test: Fail, OK # Uses dart:io. | 107 http/test/client_test: Fail, OK # Uses dart:io. |
| 104 http/test/http_test: Fail, OK # Uses dart:io. | 108 http/test/http_test: Fail, OK # Uses dart:io. |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 serialization/test/no_library_test: Skip # Expected Failure | 181 serialization/test/no_library_test: Skip # Expected Failure |
| 178 | 182 |
| 179 # Skip tests on the VM if the package depends on dart:html | 183 # Skip tests on the VM if the package depends on dart:html |
| 180 [ $runtime == vm ] | 184 [ $runtime == vm ] |
| 181 custom_element: Skip | 185 custom_element: Skip |
| 182 mdv: Skip | 186 mdv: Skip |
| 183 mutation_observer: Skip | 187 mutation_observer: Skip |
| 184 | 188 |
| 185 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 189 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 186 docgen/test/single_library_test: Skip # Uses dart:io | 190 docgen/test/single_library_test: Skip # Uses dart:io |
| OLD | NEW |