| 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 [ $compiler == none && $runtime == drt && $mode == debug] | 30 [ $compiler == none && $runtime == drt && $mode == debug] |
| 31 mdv/test/custom_element_bindings_test: Fail # Issue 11657 | 31 mdv/test/custom_element_bindings_test: Fail # Issue 11657 |
| 32 | 32 |
| 33 [ $compiler == dart2js && $runtime == ff ] | 33 [ $compiler == dart2js && $runtime == ff ] |
| 34 unittest/test/unittest_test: Pass, Timeout # http://dartbug.com/11473 | 34 unittest/test/unittest_test: Pass, Timeout # http://dartbug.com/11473 |
| 35 | 35 |
| 36 [ $runtime == d8 || $runtime == jsshell ] | 36 [ $runtime == d8 || $runtime == jsshell ] |
| 37 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 | 37 unittest/test/unittest_test: Pass, Fail # http://dartbug.com/10109 |
| 38 stack_trace/test/vm_test: Fail, OK # VM-specific traces | 38 stack_trace/test/vm_test: Fail, OK # VM-specific traces |
| 39 sequence_zip/test/stream_test: Fail, OK # Timers are not supported. |
| 39 | 40 |
| 40 [$compiler == dart2dart] | 41 [$compiler == dart2dart] |
| 41 *: Skip | 42 *: Skip |
| 42 | 43 |
| 43 [ $compiler == dart2js || $compiler == dart2dart ] | 44 [ $compiler == dart2js || $compiler == dart2dart ] |
| 44 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that | 45 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that |
| 45 # overflow in JS (numbers slightly larger than | 46 # overflow in JS (numbers slightly larger than |
| 46 # 32 bits where we do bitwise operations). | 47 # 32 bits where we do bitwise operations). |
| 47 | 48 |
| 48 [ $runtime == opera && $compiler == dart2js ] | 49 [ $runtime == opera && $compiler == dart2js ] |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 # test on Dartium, which requires all tests to have a library. | 185 # test on Dartium, which requires all tests to have a library. |
| 185 [ $runtime == dartium || $runtime == drt ] | 186 [ $runtime == dartium || $runtime == drt ] |
| 186 serialization/test/no_library_test: Skip # Expected Failure | 187 serialization/test/no_library_test: Skip # Expected Failure |
| 187 | 188 |
| 188 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 189 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 189 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 | 190 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 |
| 190 | 191 |
| 191 # 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. |
| 192 [ $runtime == vm ] | 193 [ $runtime == vm ] |
| 193 mdv: Skip | 194 mdv: Skip |
| OLD | NEW |