| 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 # Run this test manually to verify that the fixnum library produces | 5 # Run this test manually to verify that the fixnum library produces |
| 6 # the same results as native ints on a set of directed and random inputs. | 6 # the same results as native ints on a set of directed and random inputs. |
| 7 # Skip it when running automated tests because it times out. This | 7 # Skip it when running automated tests because it times out. This |
| 8 # test only makes sense on runtimes that support 64-bit integer | 8 # test only makes sense on runtimes that support 64-bit integer |
| 9 # arithmetic natively, i.e., the VM. | 9 # arithmetic natively, i.e., the VM. |
| 10 fixnum/test/int_64_vm_test: Skip | 10 fixnum/test/int_64_vm_test: Skip |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 93 |
| 94 [ $compiler == dart2js && $minified ] | 94 [ $compiler == dart2js && $minified ] |
| 95 serialization/test/serialization_test: Fail # Issue 6490 | 95 serialization/test/serialization_test: Fail # Issue 6490 |
| 96 serialization/test/no_library_test: Fail # Issue 6490 | 96 serialization/test/no_library_test: Fail # Issue 6490 |
| 97 | 97 |
| 98 # The unminified unittest tests test that the real names of Dart types are | 98 # The unminified unittest tests test that the real names of Dart types are |
| 99 # printed. Minified versions of these tests exist that test the behavior when | 99 # printed. Minified versions of these tests exist that test the behavior when |
| 100 # minified. | 100 # minified. |
| 101 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS | 101 unittest/test/*_unminified_test: Skip # DO NOT COPY THIS UNLESS YOU WORK ON DART
2JS |
| 102 | 102 |
| 103 [ $compiler == dart2js && $unchecked && ($runtime == d8 || $runtime == chrome ||
$runtime == drt) ] | |
| 104 crypto/test/sha1_test: Fail # V8 bug: https://code.google.com/p/v8/issues/detail
?id=2692 | |
| 105 | |
| 106 [ $compiler == dart2js && $browser ] | 103 [ $compiler == dart2js && $browser ] |
| 107 path/test/dartium_test: Fail # Issue 6490 | 104 path/test/dartium_test: Fail # Issue 6490 |
| 108 stack_trace/test/vm_test: Fail, OK # VM-specific traces | 105 stack_trace/test/vm_test: Fail, OK # VM-specific traces |
| 109 crypto/test/sha256_test: Slow, Pass | 106 crypto/test/sha256_test: Slow, Pass |
| 110 crypto/test/sha1_test: Slow, Pass | 107 crypto/test/sha1_test: Slow, Pass |
| 111 | 108 |
| 112 [ $browser ] | 109 [ $browser ] |
| 113 analyzer_experimental/test/error_test: Fail, OK # Uses dart:io. | 110 analyzer_experimental/test/error_test: Fail, OK # Uses dart:io. |
| 114 analyzer_experimental/test/generated/element_test: Fail, OK # Uses dart:io. | 111 analyzer_experimental/test/generated/element_test: Fail, OK # Uses dart:io. |
| 115 analyzer_experimental/test/generated/resolver_test: Fail, OK # Uses dart:io. | 112 analyzer_experimental/test/generated/resolver_test: Fail, OK # Uses dart:io. |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 189 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 193 path/test/dart2js_test: Fail, OK # Issue 6490 | 190 path/test/dart2js_test: Fail, OK # Issue 6490 |
| 194 | 191 |
| 195 # Skip mdv tests on command line VM, they only run in the browser. | 192 # Skip mdv tests on command line VM, they only run in the browser. |
| 196 [ $runtime == vm ] | 193 [ $runtime == vm ] |
| 197 mdv: Skip | 194 mdv: Skip |
| 198 | 195 |
| 199 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 196 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 200 docgen/test/single_library_test: Skip # Uses dart:io | 197 docgen/test/single_library_test: Skip # Uses dart:io |
| 201 | 198 |
| OLD | NEW |