| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 serialization/test/serialization_test: Fail # Issue 6490 | 84 serialization/test/serialization_test: Fail # Issue 6490 |
| 85 serialization/test/no_library_test: Fail # Issue 6490 | 85 serialization/test/no_library_test: Fail # Issue 6490 |
| 86 | 86 |
| 87 [ $compiler == dart2js && $minified ] | 87 [ $compiler == dart2js && $minified ] |
| 88 # The unminified unittest tests test that the real names of Dart types are | 88 # The unminified unittest tests test that the real names of Dart types are |
| 89 # printed. Minified versions of these tests exist that test the behavior when | 89 # printed. Minified versions of these tests exist that test the behavior when |
| 90 # minified. | 90 # minified. |
| 91 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS | 91 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS |
| 92 | 92 |
| 93 [ $compiler == dart2js && $browser ] | 93 [ $compiler == dart2js && $browser ] |
| 94 path/test/dartium_test: Fail # Issue 6490 | |
| 95 stack_trace/test/vm_test: Fail, OK # VM-specific traces | 94 stack_trace/test/vm_test: Fail, OK # VM-specific traces |
| 96 crypto/test/sha256_test: Slow, Pass | 95 crypto/test/sha256_test: Slow, Pass |
| 97 crypto/test/sha1_test: Slow, Pass | 96 crypto/test/sha1_test: Slow, Pass |
| 98 | 97 |
| 99 [ $browser ] | 98 [ $browser ] |
| 100 analyzer_experimental/test/error_test: Fail, OK # Uses dart:io. | 99 analyzer_experimental/test/error_test: Fail, OK # Uses dart:io. |
| 101 analyzer_experimental/test/generated/element_test: Fail, OK # Uses dart:io. | 100 analyzer_experimental/test/generated/element_test: Fail, OK # Uses dart:io. |
| 102 analyzer_experimental/test/generated/resolver_test: Fail, OK # Uses dart:io. | 101 analyzer_experimental/test/generated/resolver_test: Fail, OK # Uses dart:io. |
| 103 analyzer_experimental/test/options_test: Fail, OK # Uses dart:io. | 102 analyzer_experimental/test/options_test: Fail, OK # Uses dart:io. |
| 104 analyzer_experimental/test/services/formatter_test: Fail, OK # Uses dart:io. | 103 analyzer_experimental/test/services/formatter_test: Fail, OK # Uses dart:io. |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 178 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 180 path/test/dart2js_test: Fail, OK # Issue 6490 | 179 path/test/dart2js_test: Fail, OK # Issue 6490 |
| 181 | 180 |
| 182 # Skip mdv tests on command line VM, they only run in the browser. | 181 # Skip mdv tests on command line VM, they only run in the browser. |
| 183 [ $runtime == vm ] | 182 [ $runtime == vm ] |
| 184 mdv: Skip | 183 mdv: Skip |
| 185 | 184 |
| 186 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 185 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 187 docgen/test/single_library_test: Skip # Uses dart:io | 186 docgen/test/single_library_test: Skip # Uses dart:io |
| 188 | 187 |
| OLD | NEW |